com.autonomy.utilities
Class MathUtils

java.lang.Object
  |
  +--com.autonomy.utilities.MathUtils

public class MathUtils
extends java.lang.Object

This class provides mathematical functions not already in java.lang.Math


Constructor Summary
MathUtils()
           
 
Method Summary
static double tanh(double x)
          Calculates the hyperbolic tangent, tanh(x) = (e^x - e^-x) / (e^x + e^-x), of x.
 
Methods inherited from class java.lang.Object
equals, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
 

Constructor Detail

MathUtils

public MathUtils()
Method Detail

tanh

public static double tanh(double x)
Calculates the hyperbolic tangent, tanh(x) = (e^x - e^-x) / (e^x + e^-x), of x.