Has anyone ever used the Logarithmic function? I cant find any examples on it.
Thanks,
Jerel
Printable View
Has anyone ever used the Logarithmic function? I cant find any examples on it.
Thanks,
Jerel
I don't think I ever used the log function in Java. But if you want to know about logs, you might need to ask in the Math forum. I have used the Java's Math class and it does have the log function. You would use it like this:
double someNumber = 100; // Example for log(100)=2
double aLogarithm = Math.log(someNumber); //aLogarithm should equal 2.