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.

link|improve this question

1  
If you want fast functions, those exp( y * log( x ) ) implementations aren't going to cut it. – MSalters Jan 11 '11 at 12:23
@MSalters: Probably true, especially of sqrt ... can one really do much better on pow though? – Goz Jan 11 '11 at 13:33
yes, as I pointed out in my answer. Break out the integer part of y. – MSalters Jan 14 '11 at 10:32
feedback

3 Answers

up vote 10 down vote accepted

A very simple solution is to use a decent table-driven approximation. You don't actually need a lot of data if you reduce your inputs correctly. exp(a)==exp(a/2)*exp(a/2), which means you really only need to calculate exp(x) for 1 < x < 2. Over that range, a runga-kutta approximation would give reasonable results with ~16 entries IIRC.

Similarly, sqrt(a) == 2 * sqrt(a/4) which means you need only table entries for 1 < a < 4. Log(a) is a bit harder: log(a) == 1 + log(a/e). This is a rather slow iteration, but log(1024) is only 6.9 so you won't have many iterations. You'd use a similar "integer-first" algorithm for pow: pow(x,y)==pow(x, floor(y)) * pow(x, frac(y)). This works because pow(double, int) is trivial (divide and conquer).

[edit] For the integral component of log(a), it may be useful to store a table 1, e, e^2, e^3, e^4, e^5, e^6, e^7 so you can reduce log(a) == n + log(a/e^n) by a simple hardcoded binary search of a in that table. The improvement from 7 to 3 steps isn't so big, but it means you only have to divide once by e^n instead of n times by e.

link|improve this answer
1  
for exp and log, your approach is OK (except that I'd use Taylor or Pade expansion around 1, and use arguments between -0.5 and 0.5 for exp, and 1 and 2 for log). For sqrt, it is probably overkill: Newton method seems fairly well suited (you have to compute 1 / sqrt(x) by Newton method, only multiplications) – Alexandre C. Jan 11 '11 at 13:00
As an aside I've implemented sqrt as a newton raphson iteration. The performance is good and it only take a few steps to be more precise than my 10.22 fixed can cope with ... – Goz Jan 11 '11 at 21:43
feedback

A good starting point is Jack Crenshaw's book, "Math Toolkit for Real-Time Programming". I see it's available on Kindle now. It has a good discussion of algorithms and implementations for various transcendental functions.

link|improve this answer
feedback

Check my fixed point sqrt implementation using only integer operations. It was fun to invent. Quite old now.

https://groups.google.com/forum/?hl=fr%05aacf5997b615c37&fromgroups#!topic/comp.lang.c/IpwKbw0MAxw/discussion

Otherwise check the CORDIC set of algorithms. That's the way to implement all the functions you listed and the trigonometric functions.

EDIT : I published the reviewed source on GitHub here

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

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