jhplot.math.num.special
Class Trigonometric

java.lang.Object
  extended by jhplot.math.num.special.Trigonometric

public final class Trigonometric
extends java.lang.Object

Utility class that provides methods related to the trigonometric functions.

Since:
1.1

Method Summary
static double acosh(double x)
          Returns the inverse hyperbolic cosine of x.
static double asinh(double x)
          Returns the inverse hyperbolic sine of x.
static double atanh(double x)
          Returns the inverse hyperbolic tangent of x.
static double cosh(double x)
          Returns the hyperbolic cosine of x.
static double sinh(double x)
          Returns the hyperbolic sine of x.
static double tanh(double x)
          Returns the hyperbolic tangent of x.
 
Methods inherited from class java.lang.Object
equals, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
 

Method Detail

acosh

public static double acosh(double x)
Returns the inverse hyperbolic cosine of x.

Parameters:
x - double value for which to find the inverse hyperbolic cosine
Returns:
cosh-1(x)
Since:
1.2

asinh

public static double asinh(double x)
Returns the inverse hyperbolic sine of x.

Parameters:
x - double value for which to find the inverse hyperbolic sine
Returns:
sinh-1(x)
Since:
1.2

atanh

public static double atanh(double x)
Returns the inverse hyperbolic tangent of x.

Parameters:
x - double value for which to find the inverse hyperbolic tangent
Returns:
tanh-1(x)
Since:
1.2

cosh

public static double cosh(double x)
Returns the hyperbolic cosine of x.

Parameters:
x - double value for which to find the hyperbolic cosine
Returns:
cosh(x)

sinh

public static double sinh(double x)
Returns the hyperbolic sine of x.

Parameters:
x - double value for which to find the hyperbolic sine
Returns:
sinh(x)

tanh

public static double tanh(double x)
Returns the hyperbolic tangent of x.

Parameters:
x - double value for which to find the hyperbolic sine
Returns:
sinh(x)


jHepWork 2.8 (©) S.Chekanov