|
-
Feb 3rd, 2003, 09:11 AM
#1
Thread Starter
Hyperactive Member
Loagarithmic function
Has anyone ever used the Logarithmic function? I cant find any examples on it.
Thanks,
Jerel
-
Feb 8th, 2003, 08:04 PM
#2
Addicted Member
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.
Posting Permissions
- You may not post new threads
- You may not post replies
- You may not post attachments
- You may not edit your posts
-
Forum Rules
|
Click Here to Expand Forum to Full Width
|