Forum Discussion

Komag's avatar
Komag
Roku Guru
7 years ago

Issue with math: float calculation, ToStr()

Try this: ? 1.1* 9 console prints 9.9 But try this: ? str(1.1 * 9) console prints 9.900001 I assume this is some sort of floating point rounding error having to do with binary math and how c...