Creating a loop for a matrix function

조회 수: 2 (최근 30일)
Kieran Phull
Kieran Phull 2019년 11월 27일
답변: Katie 2019년 11월 27일
Hi,
I have written a code that has carried out a function on the first two rows of a matrix and i want to write code that repeats this for the rest of the rows of the matrix (the matrix is interchangable).
  댓글 수: 1
James Tursa
James Tursa 2019년 11월 27일
Can you give us more details? If X is your matrix, then X(k,:) is the k'th row of the matrix and you should be able to use that in your calculations.

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

답변 (1개)

Katie
Katie 2019년 11월 27일
How you would write this code depends on how you want to do the function on the matrix rows:
  • Option 1: rows 1&2, then rows 3&4, then rows 5&6, and so on
  • Option 2: rows 1&2, rows 2&3, rows 3&4, and so on
For both cases, you can use a for loop and use the size() function to find the number of rows of the matrix you are using. size(mat,1) will give you the number of rows and size(mat,2) will give you the number of columns of the matrix "mat".
If you're looking to do option 1, you could do the following:
cnt=1;%index for a matrix "x" to store all the results in, that isn't incremented with the loop
for i=1:2:size(mat,1)%loop through the rows of the matrix at increments of 2
if i+1<=size(mat,1) %check to make sure you won't go past the last row
x(cnt)=fcn(mat(i,:),mat(i+1,:))%doing the function on the current row of the matrix and the next row
cnt=cnt+1;
end
end
For option 2, you would make some slight changes to the above code, mainly not incrementing the for loop by 2 and not needing to check to make sure you don't try to index rows of the matrix that don't exist.
for i=1:size(mat,1)-1%loop through the rows of the matrix, using size-1 makes sure you don't go past the last row
x(i)=fcn(mat(i,:),mat(i+1,:))%doing the function on the current row of the matrix and the next row
end

카테고리

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