필터 지우기
필터 지우기

Execute matrix in a "for loop"

조회 수: 2 (최근 30일)
Ahmed Alsaadi
Ahmed Alsaadi 2018년 11월 27일
답변: Honglei Chen 2018년 11월 27일
I have matrix m that is (2000x5)(rowsxcolumns), and I have a code. I want to execute my code for each column of this matrix, i.e.
loop number #1 = m(2000,col1); #2 = m(2000,col2), ....... #5 = m(2000,col5). Does anybody know how to do that?

채택된 답변

Honglei Chen
Honglei Chen 2018년 11월 27일
Let's say your function is foo, you can do
for ii = 1:size(m,2)
y = foo(m(:,ii));
end
HTH

추가 답변 (0개)

카테고리

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