查看单个帖子
旧 2019-11-25, 18:02   #1
poster
高级会员
 
注册日期: 2019-11-21
帖子: 3,006
声望力: 66
poster 正向着好的方向发展
默认 how plot structures whithout for loop?

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...
poster 当前离线   回复时引用此帖