Infinite loop when decimals are added
조회 수: 1 (최근 30일)
이전 댓글 표시
I am making a simple program to calculate the number of times a decimal number has to be multiplied (by positive integers) so that the decimal part (mod1) will = 0.
Example of the code:
%Decimal
ro=0.5854;
n=1;
while mod(ro*n,1)~=0
n=n+1;
end
n
In this case the answer is 5000.
I want to be able to change the last digit of the decimal point. But I am having a problem when I make a small change in the program. I get an infinite loop. The changed program is shown below:
%Decimal
ro=0.585+0.0004;
n=1;
while mod(ro*n,1)~=0
n=n+1;
end
n
I can't understand why I get an infinite loop with this small change - the value of ro changed acordingly but I get an infinite "while" loop. Please explain.
댓글 수: 0
채택된 답변
Stephen23
2022년 7월 30일
이동: Walter Roberson
2023년 1월 22일
"Please explain"
Different accumulated floating point error combined with an algorithm that does not take into account the behavior of binary floating point numbers. Also note that the values are not the same:
fprintf('%.30f\n', 0.5854, 0.585+0.0004)
Read more about binary floating point numbers:
This is worth reading as well:
추가 답변 (0개)
참고 항목
카테고리
Help Center 및 File Exchange에서 Loops and Conditional Statements에 대해 자세히 알아보기
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!