I have three structures 1x103 : Steps, Time and Loc. All 3 have 2 fields (contr and prost, each line is a 30x1 double)
I would like to plot theses structure without for loops like :
figure
plot(Time.Contr, Steps.Contr),
hold on, plot(Time.Contr, Loc.Contr)
But I get an error : "Vectors must be the same length."
I tried plot(Time(:).Contr, Steps(:).Contr)
and got the same error
I thought about using "cellfun
" but I don't have cell arrays but double arrays
Is there any other solution than using a for loop ?
More answer...