필터 지우기
필터 지우기

Using nested for loop to alter a previous matrix

조회 수: 1 (최근 30일)
Student
Student 2018년 3월 18일
댓글: Student 2018년 3월 18일
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.

답변 (1개)

Rik
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
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.
Student
Student 2018년 3월 18일
Yes of course. I was not seeking a direct solution, only how I should go about solving the problem. Nevertheless, I now understand how to go about solving it and will create a my own solution.

댓글을 달려면 로그인하십시오.

카테고리

Help CenterFile Exchange에서 Loops and Conditional Statements에 대해 자세히 알아보기

제품

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by