Groovy - log()



The method returns the natural logarithm of the argument.

Syntax

double log(double d) 

Parameters

d - Any primitive data type.

Return Value

This method Returns the natural logarithm of the argument.

Example

Following is an example of the usage of this method −

class Example { 
   static void main(String[] args) { 
      double x = 11.635; 
      double y = 2.76;
	  
      System.out.printf("The value of e is %.4f%n", Math.E); 
      System.out.printf("log(%.3f) is %.3f%n", x, Math.log(x)); 
   } 
}

When we run the above program, we will get the following result −

The value of e is 2.7183
log(11.635) is 2.454
groovy_numbers.htm
Advertisements