How to code for loop to generate mean values of data form structure ?
m1=mean(x1.data);
m2=mean(x2.data);
m3=mean(x3.data);
m4=mean(x4.data);
mi=mean(xi.data);
如果你真的需要使用不同的变量名(而不是数组),你可以使用eval
. 虽然这不被认为是好的做法:
for n=1:10
eval(['m' num2str(n) '=mean(x' num2str(n) '.data);']);
end
我认为你可以这样做:
structfun(@mean, x1)
假设您按照其他 Dan 的建议进行操作,并制作x
了结构数组,而不是拥有许多单独命名的变量。
检查均值。您可以指定尺寸。