Floor/Fix rounds the result of a division (60.000) to 59

조회 수: 2 (최근 30일)
Levin Schaefer
Levin Schaefer 2022년 4월 7일
댓글: DGM 2022년 4월 7일
Hello,
I have the problem that Matlab rounds (using floor/fix) the result of my division, 33 / 0.55, towards 59 instead of 60. The code looks like this:
s = floor(a / b)
Where 'a' and 'b' come from a GUI and can be integers or decimals (but never negativ or zero). When I set a = 33 and b = 0.55 and run the program matlab produces as a intermediate result, of a / b, 60.000 (I checked it), which get afterwards rounded by floor (or fix) to 59.
The ultimate goal of the part of the code is to divide 'a' through 'b' and give an integer back, where the integer should be rounded down towards the next integer (1.7 to 1 or 4.9 to 4 etc.).
Thanks for the help!
  댓글 수: 1
DGM
DGM 2022년 4월 7일
It is rounded down to the next integer.
format short
33/0.55
ans = 60.0000
format long
33/0.55
ans =
59.999999999999993
It's just a matter of floating point error and display settings.

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

답변 (1개)

Mohammed Hamaidi
Mohammed Hamaidi 2022년 4월 7일
Hi
Just use:
s=round(a/b)

카테고리

Help CenterFile Exchange에서 Whos에 대해 자세히 알아보기

태그

제품


릴리스

R2020a

Community Treasure Hunt

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

Start Hunting!

Translated by