Need for explication of this code
古いコメントを表示
I need explication of this code
V=(1:50);
I=3;
J=4;
M=[];
for i=1:J:I*J
M=[M;V(i:i+I)];
end;
2 件のコメント
Ruger28
2019 年 10 月 23 日
This "code" isn't even finished...
Alex Mcaulley
2019 年 10 月 24 日
Put a breakpoint in this line:
M=[M;V(i:i+I)];
and see what is happening in each iteration
採用された回答
その他の回答 (0 件)
カテゴリ
ヘルプ センター および File Exchange で Matrix Indexing についてさらに検索
製品
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!