% isn't defined. modulo only works on integers. I want something equivalent to Javascript's modulo / c's fmod.
|
|
|
|||
|
|
|
The flonum library defines
|
||
|
|
|
|
Here is the javascript equivalent, I believe, where n=dividend, d=divisor:
|
||
|
|
|
|
It looks like remainder is the word you want. From here:
|
||
|
|
|
I don't know scheme, but mathematically you could do something like:
So for a number like 2.5 mod 2 you would get:
|
||
|
|
