Plotting a for loop

조회 수: 11 (최근 30일)
Salvie Morales
Salvie Morales 2019년 9월 16일
댓글: Steven Lord 2019년 9월 16일
Hi! I'm super new to MatLab so I am probably just making a dumb mistake but each time I try to plot my for loop I get a graph but no data is represented on it. Can someone set me straight? My entry looks like:
for i = 0:100;
C = i;
F = (C*1.8)+32;
plot (C,F)
xlabel('Celsius')
ylabel('Fahrenheit')
end
C
F

답변 (1개)

Matt J
Matt J 2019년 9월 16일
편집: Matt J 2019년 9월 16일
C=nan(1,101); F=C; %preallocate
for i = 0:100;
C(i+1) = i;
F(i+1) = (i*1.8)+32;
end
plot (C,F)
xlabel('Celsius')
ylabel('Fahrenheit')
  댓글 수: 2
Matt J
Matt J 2019년 9월 16일
Or, with no looping,
C=0:100;
F=C*1.8+32;
plot(C,F)
Steven Lord
Steven Lord 2019년 9월 16일
Matt J has given you two solutions. If you are required to plot inside the loop, you can create an animatedline before the loop and calling addpoints on the animatedline inside the loop. See the animatedline documentation page for examples.
As for why your original approach wasn't working, it was plotting a line each iteration through the loop. Each of those lines consisted of exactly one point; they weren't automatically connected to the previous lines created by previous loop iterations.

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

카테고리

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