vote up 1 vote down star

% isn't defined. modulo only works on integers. I want something equivalent to Javascript's modulo / c's fmod.

flag

66% accept rate
You're asking scheme-specific questions here; please keep your tags minimal – chrispy Nov 6 at 23:20

4 Answers

vote up 1 vote down

The flonum library defines flmod, which does what you want. In Pilot Scheme:

(require rnrs/arithmetic/flonums-6)
(flmod pi (sqrt 2))
link|flag
vote up 0 vote down

Here is the javascript equivalent, I believe, where n=dividend, d=divisor:

(let ((nOverD (/ n d)))
      (let ((q (if (> nOverD 0.0) (floor nOverD) (ceiling nOverD))))
        (- n (* d q))))
link|flag
vote up -1 vote down

It looks like remainder is the word you want. From here:

(remainder -13 -4.0)      -1.0
link|flag
it seems to not take floating point args as the 1st argument, still – Claudiu Nov 6 at 19:18
vote up 1 vote down

I don't know scheme, but mathematically you could do something like:

rem = num - trunc(num / mod) * mod;

So for a number like 2.5 mod 2 you would get:

2.5 - trunc(2.5 / 2) * 2
= 2.5 - trunc(1.25) * 2
= 2.5 - 1 * 2
= 2.5 - 2
= 0.5
link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.