for loop 2x2 matrix, do not overwrite each iteration
显示 更早的评论
for i=1:5
a=[i i+1;i i-1]
end
I'm wanting to save each iteration of a so that I would end up with a 10x2 matrix in the above example.
Thanks
1 个评论
John D'Errico
2023-1-11
Why not create a 3-d matrix? So now each matrix is just one plane of a 3-d array, of size 2x2x5? Or store each 2x2 array as one cell of a cell array of length 5?
采纳的回答
更多回答(0 个)
类别
在 帮助中心 和 File Exchange 中查找有关 Matrices and Arrays 的更多信息
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!