I want to implement math function power to double, can you advice algorithm for this?
I've reviewed sources of Java ME Open Source Software - Math but I want to implement it from the scratch.
Thank you!
|
I want to implement math function power to double, can you advice algorithm for this? I've reviewed sources of Java ME Open Source Software - Math but I want to implement it from the scratch. Thank you! |
|||
|
|
|
Perhaps this site is of some help: http://today.java.net/pub/a/today/2007/11/06/creating-java-me-math-pow-method.html |
|||||
|
|
|
I think this article will be useful, and another article with complete code is here. |
||||
|
|
I don't know J2ME well enough to know, but do you have Then you can simply use this relation:
If you don't have the aforementioned two functions, then you should start by implementing those. As far as I know, the above relation is the only reasonable way to compute Update: I see the paper linked in kusman's answer shows an alternative way to do |
|||||
|