Best Math.pow Alternative in J2ME

What is the best alternative to the Math.pow () method in J2ME, since I can conclude that J2ME does not support the Math.pow () method and some other methods like Math.exp () and similar, I ask this question only for in order to find one of the best solutions available.

-1
source share
1 answer

Try

com.steema.teechart.misc.MathUtils

On this page I received this information on

http://www.steema.com/files/public/teechart/java/v1/docs/JavaDoc/com/steema/teechart/misc/MathUtils.html

It looks like you have to go the third way. If you do not like it. Google third-party math libraries for J2ME.

He strictly formulates this for J2ME, since J2ME does not have a regular Math lib java.lang.Math

Java developers use.

+1

All Articles