How to program a nested loop with a matrix?
조회 수: 8 (최근 30일)
이전 댓글 표시
Nested loop: Write a program to create a 4x4 matrix for which each entry is computed as follows: A(i,j) = 2i-j.
댓글 수: 2
채택된 답변
Abraham Boayue
2018년 3월 24일
Hey Rose, since the size of your matrix is going to be 4x4, you will need to do the following to achieve your goal.
1. Initialize A to a 4x4 zero matrix since that's how much space you need.
N = 4; this is the number of rows
M = 4; number of columns
A = zeros(N,M); % 4x4 matrix
2. write your double for loops
for i = 1 : N
for j = 1: M
write your code here (It will be just a single line code)
read about how for loop works, it is one of the basis of programming.
end
end
댓글 수: 2
추가 답변 (1개)
참고 항목
카테고리
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!