I've got a fixed point class (10.22) and I have a need of a pow, a sqrt, an exp and a log function.
Alas I have no idea where to even start on this. Can anyone provide me with some links to useful articles or, bettter yet, provide me with some code?
I'm assumign that once I have an exp function then it becomes relatively easy to implement pow and sqrt as they just become.
pow( x, y ) => exp( y * log( x ) ) sqrt( x ) => pow( x, 0.5 )
Its just those exp and log functions that I'm finding difficult (as though I remember a few of my log rules, I can't remember much else about them).
Presumably, btw, there would also be a faster method for sqrt and pow so any pointers on that front would be appreciated even if its just to say use the methods i outline above :)
Please note: This HAS to be cross platform and in pure C/C++ code so I cannot use any assembler optimisations.
exp( y * log( x ) )implementations aren't going to cut it. – MSalters Jan 11 '11 at 12:23