필터 지우기
필터 지우기

Loop won't run past first loop, what am I doing wrong here?

조회 수: 1 (최근 30일)
Laasya
Laasya 2023년 11월 28일
답변: Walter Roberson 2023년 11월 28일
I made a matrix with double values that the loop traverses through. Each loop, a variable is set to the row number, does the calculations, then inputs the value into the matrix on different new column. Everything inside the loop is correct, but for some reason, it just does the first row and then stops.
D = 1.056;
m = 0.040;
a=0
a = 0
for r=1+a
A = (C{r,2}*0.5)^2*pi;
Q = A*C{r,3};
C{r,4} = Q;
R = (D*C{r,3}*C{r,2})/m;
C{r,5} = R;
a=a+1;
end
Undefined variable 'C'.
  댓글 수: 1
Chunru
Chunru 2023년 11월 28일
"for r=1+a" will loop only once. How many times do you want to loop? Try to post an excutable code segment (with all variables defined) for further assistance.

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

답변 (1개)

Walter Roberson
Walter Roberson 2023년 11월 28일
D = 1.056;
m = 0.040;
numrow = size(C,1);
for r = 1 : numrow
C2 = C{r,2};
C3 = C{r,3};
A = (C2*0.5).^2*pi;
Q = A .* C3;
C{r,4} = Q;
R = (D .* C3 .* C2)/m;
C{r,5} = R;
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