Skip to content
Snippets Groups Projects
Commit 049cec71 authored by William Lövfors's avatar William Lövfors
Browse files

Added StructsFieldCat

parent 261b9a83
No related branches found
No related tags found
No related merge requests found
function [s] = StructsFieldCat(structs, dim)
%STRUCTSFIELDCAT Summary of this function goes here
% Detailed explanation goes here
if nargin<2 || isempty(dim)
dim=1;
end
s = structs(1);
for i = 2:length(structs)
s=StructFieldCat(s, structs(i), dim);
end
end
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment