can someone please tell me How to find antilog for a number using java program? i am new to this java Math.log(10) gives the log value. now I want to take this
Math.log(10)
mathematically: e^(ln x) = x
in java:
Math.pow(Math.E, (Math.log(x)) == x; //equals true
You can use Logarithm class in Java to calculate log and antilog. More on this is provided here.