- #1
1plus1is10
- 51
- 0
- TL;DR Summary
- Replace FMOD with algebraic math
I have:
a = FMOD(((x*y)-z), x) / x
When I look at this, I think it could most likely be simplified algebraically if I could only replace FMOD with algebraic math.
After searching the web, I realize that this is more than I would know how to do since FMOD uses FLOOR.
Anyway, I thought I would ask here to see if my function can be simplified somehow (hopefully without FMOD).
Thanks
a = FMOD(((x*y)-z), x) / x
When I look at this, I think it could most likely be simplified algebraically if I could only replace FMOD with algebraic math.
After searching the web, I realize that this is more than I would know how to do since FMOD uses FLOOR.
Anyway, I thought I would ask here to see if my function can be simplified somehow (hopefully without FMOD).
Thanks