How do I compute the remainder of the division of two floats?
float
How about a-floor(a/b)*b - presuming a and b both positive?
a-floor(a/b)*b
a
b
You could say that "remainder" is not a proper concept for float divisions, but I'll leave that to your own judgment.