Message 1 of 3
[LISP] Why is it like that? "1252.226" > 1252.23
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report
I want but can't get a numeric variable with the value 1252.226. It keeps rounding me up to 1252.23.
(setq a 1252.226)
!a
1252.23
(setq a (+ a 0.001))
!a
1252.23
How to get numerical variable 1252.23?
How to change this rounding?