Logarithmpublic class Logarithm extends Object Show the logarithm to base e of a number |
Methods Summary |
---|
public static void | main(java.lang.String[] argv)
//+
double someValue;
// compute someValue...
//-
someValue = 0;
//+
double log_e = Math.log(someValue);
//-
|
|