i have a for loop and a vector in this loop that chang each loop that spend how can save this vector in all times ?
1 次查看(过去 30 天)
显示 更早的评论
like this code: h=1000 for i=1:h m=[i j] end that j change with every i how can save m vectors that produce in each time at loop?
0 个评论
采纳的回答
Azzi Abdelmalek
2013-10-18
编辑:Azzi Abdelmalek
2013-10-18
h=1000
m=zeros(1000,2)
for i=1:h
m(i,:)=[i i+1]; %for example
end
disp(m)
更多回答(0 个)
另请参阅
类别
在 Help Center 和 File Exchange 中查找有关 Loops and Conditional Statements 的更多信息
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!