The .net framework provides in the Math class a method for powering double. But by precision requirement I need to raise a decimal to a decimal power [ Pow(decimal a, decimal b) ]. Does the framework have such a function? Does anyone know of a library with this kind of function?
|
2
|
|||||
|
|
|
To solve my problem I found some expansion series, and them I had them implemented to solve the equation X^n = e^(n * ln x).
The Pow() and Factorial() functions are simple because the power is always an int (inside de power series). |
||
|
|
|
|
Are you sure you actually want to do this? A If you expect only integer powers, though, I suggest you use the integer-based power algorithm that was already discussed here on SO. |
||||||||||||
|
|
|
I think it depends a lot on the number you plan on plugging in. If 'a' and 'b' are not 'nice' number then you'll likely get a value which is non-terminating that is impossible to store and if C# BigDecimal behaves at all like Java BigDecimal it probably throws an exception in such a case. |
||
|
|
|
|
log(c^d) = d * log(c) further... c^d = antilogarithm(d * log(c)) Code:
|
||||||||||
|
