我想将来自 for 循环的数据存储在一个数组中。我怎样才能做到这一点?样本输出:
for x=1:100
for y=1:100
Diff(x,y) = B(x,y)-C(x,y);
if (Diff(x,y) ~= 0)
% I want to store these values of coordinates in array
% and find x-max,x-min,y-max,y-min
fprintf('(%d,%d)\n',x,y);
end
end
end
谁能告诉我我该怎么做。谢谢
结婚