objective-c

Remainder of float division


How do I compute the remainder of the division of two floats?


Solution

  • How about a-floor(a/b)*b - presuming a and b both positive?

    You could say that "remainder" is not a proper concept for float divisions, but I'll leave that to your own judgment.