How to Stop FOR loop when "answer" is reached, and display answer?

조회 수: 2 (최근 30일)
Alexis
Alexis 2022년 12월 2일
댓글: Star Strider 2022년 12월 2일
Simple "throwing a ball" physics problem - someone throws a ball, I want to know what time the ball touches the ground.
I am trying to create a loop that "stops" when the height of the ball reaches 0.
Then I want to display what time the ball reaches height = 0.
Here is what I have sofar:
%When does ball Reach the Surface?
for t = 0:0.01:6.2
if height_earth = 0
disp('The Time when the ball lands is: %4.2f\n', time)
else
disp('The Ball doesnt Touch the Ground')
end
end
I get the display "The Ball doesnt Touch the Ground" 621 times, and have a feeling if "if height_earth = 0" were valid matlab syntax, a would get the entire time array.

답변 (1개)

Star Strider
Star Strider 2022년 12월 2일
See the documentation on the break function.
  댓글 수: 2
Alexis
Alexis 2022년 12월 2일
What about for the solving? How would I get it to display the time when height = 0?
Star Strider
Star Strider 2022년 12월 2일
Put the break call after the disp call.
Also, the comparison requires a ‘double equal’ —
if height_earth == 0
.

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

카테고리

Help CenterFile Exchange에서 Loops and Conditional Statements에 대해 자세히 알아보기

제품


릴리스

R2022b

Community Treasure Hunt

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

Start Hunting!

Translated by