how to write a while-loop for a function

조회 수: 5 (최근 30일)
Martin Svendsen
Martin Svendsen 2012년 10월 10일
lim x-> inf (1 + 1/x)^x how to write a while-loop that repeats it self until the value of the subsequent numbers are less than 10^(-6)

답변 (1개)

Doug Hull
Doug Hull 2012년 10월 10일
flagMetTolerance = false
while ~flagMetTolerance
doMath
flagMetTolerance = (error <= tolerance)
end
  댓글 수: 2
Martin Svendsen
Martin Svendsen 2012년 10월 10일
Could you help me to write the whole program. I am new to matlab and i dont really understand what you just wrote.
Jan
Jan 2012년 10월 10일
@Martin: Doug's program does the following: It is a while-loop, which calls the operation "doMath" repeatedly until a certain error value (the difference of subsequent elements in your case) is below the limit "tolerance".
I'm sure you will find out more details, if you are trying to use Matlab.

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

카테고리

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