필터 지우기
필터 지우기

Info

이 질문은 마감되었습니다. 편집하거나 답변을 올리려면 질문을 다시 여십시오.

Nested for loops help!

조회 수: 2 (최근 30일)
Andrew Wiebe
Andrew Wiebe 2015년 9월 23일
마감: MATLAB Answer Bot 2021년 8월 20일
If i have
m1(n,1)=(m2(n,1)+((m3(n,1))*p));
Where m1 m2 and m3 are all arrays. if i wanted the range of n=1:42, and the range of p=1:31, how could i tell matlab to calculate l=1:31 for every different value of n?

답변 (2개)

BAN
BAN 2015년 9월 24일
편집: James Tursa 2015년 9월 24일
Try using this:
for n = 1:42
for p=1:31
m1(n,1)=(m2(n,1)+((m3(n,1))*p));
end
end
Here, for every value of n, that equation will be executed 31 times.
Hope it helps !!

Andrew Wiebe
Andrew Wiebe 2015년 9월 24일
Ok i think it worked, just confused because it lists the name of each element within n as the values, and i expected them to be called 31x1 double for something similar.

이 질문은 마감되었습니다.

Community Treasure Hunt

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

Start Hunting!

Translated by