>> (1.2-floor(1.2))*10
ans =
2.0000
>> floor((1.2-floor(1.2))*10)
ans =
1
Have I misunderstood how the floor function interacts with other math operations?

2 Kommentare

Albert Hsueh
Albert Hsueh am 17 Mai 2021
>> ((1.2-floor(1.2))*10) == 2
ans =
logical 0
Albert Hsueh
Albert Hsueh am 17 Mai 2021
I'm guessing this is some really small numerical inpercision in the back end. The following results in the expected result
>> round((1.2-floor(1.2))*10)==2
ans =
logical 1

Melden Sie sich an, um zu kommentieren.

 Akzeptierte Antwort

Adam Danz
Adam Danz am 17 Mai 2021
Bearbeitet: Adam Danz am 17 Mai 2021

1 Stimme

This is round-off error and is caused by limitation to representing floating point decimals.
1.2-floor(1.2)
ans = 0.2000
1.2-floor(1.2) - 0.2000 % Reveal round-off error
ans = -5.5511e-17
Likewise,
(1.2-floor(1.2))*10
ans = 2.0000
(1.2-floor(1.2))*10 - 2.000 % Reveal round-off error
ans = -4.4409e-16
Here's another example,
4/3
ans = 1.3333
4/3-1
ans = 0.3333
(4/3 - 1)*3
ans = 1.0000
(4/3 - 1)*3 - 1 % Reveal round-off error
ans = -2.2204e-16
See this answer for a list of references to learn more about round-off error and floating point representation. If there's a specific issue you need to solve to avoid the problem, add some details and I may be able to point you in the right direction.

Weitere Antworten (0)

Kategorien

Mehr zu Mathematics finden Sie in Hilfe-Center und File Exchange

Produkte

Version

R2021a

Tags

Community Treasure Hunt

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

Start Hunting!

Translated by