Using nested for loop to alter a previous matrix
1 回表示 (過去 30 日間)
古いコメントを表示
I need to define a 5x5 matrix with all zeros, then use a nested for loop to alter that matrix to look like
How do I go about doing this? I understand that I need to have some sort of counter to go up as each element increases down the column.
0 件のコメント
回答 (1 件)
Rik
2018 年 3 月 18 日
Is this homework? If not, why not avoid a loop:
A =1:25;
A2=reshape(A,5,5);
2 件のコメント
Image Analyst
2018 年 3 月 18 日
Since it's homework, which means you're not allowed to turn in Birdman's code as your own (lest you get caught "cheating"), then you should have tagged it as homework in advance. But it should be easy for you to do something very similar so that it's your own work you're turning in.
参考
カテゴリ
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!