필터 지우기
필터 지우기

variable with respect to i and j and k ?

조회 수: 2 (최근 30일)
Mary Jon
Mary Jon 2013년 11월 28일
답변: Walter Roberson 2013년 11월 29일
If Iam have variable A with respect to i and j,the loop include this variable is,
for i=1:10
for j=1:10
A(i,j)=statment
end
end
NOW, if I am want to applied other for loop (k=1:20) as example ,after ended i and j loop,start loop k on this variable and repeted the i,j loop again How can defined A with respect the three loop

답변 (1개)

Walter Roberson
Walter Roberson 2013년 11월 29일
for k = 1 : 20
for i = 1 : 10
for j = 1 : 10
A(i,j) = statement;
end
end
end
But perhaps you will prefer
A(i,j,k) = statement;

카테고리

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