Results 1 to 2 of 2

Thread: Loagarithmic function

  1. #1

    Thread Starter
    Hyperactive Member
    Join Date
    Jun 2002
    Location
    Tulsa,Ok
    Posts
    262

    Loagarithmic function

    Has anyone ever used the Logarithmic function? I cant find any examples on it.

    Thanks,

    Jerel

  2. #2
    Addicted Member Phenix's Avatar
    Join Date
    Sep 2002
    Location
    Near A Cube
    Posts
    228
    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
  •  



Click Here to Expand Forum to Full Width