Issue
I m looking for a faster implementation or good a approximation of functions provided by cmath
.
I need to speed up the following functions
pow(x,y)
exp(z*pow(x,y))
where z<0
. x
is from (-1.0,1.0) and y
is from (0.0, 5.0)
Solution
Here are some approxmiations:
- Optimized pow Approximation for Java and C / C++. This approximation is very inaccurate, you have to try for yourself if it is good enough.
- Optimized Exponential Functions for Java. Quite good! I use it for a neural net.
If the above approximation for pow is not good enough, you can still try to replace it with exponential functions, depending on your machine and compiler this might be faster:
x^y = e^(y*ln(x))
- And the result:
e^(z * x^y) = e^(z * e^(y*ln(x)))
Another trick is when some parameters of the formula do not change often. So if e.g. x and y are mostly constant, you can precalculate x^y and reuse this.
Answered By - martinus Answer Checked By - Willingham (WPSolving Volunteer)