Hyperbolic functions.
Static member | Description |
Full Usage:
Hyperbolic.Acosh(x)
Parameters:
float
Returns: float
|
|
Full Usage:
Hyperbolic.Asinh(x)
Parameters:
float
Returns: float
|
|
Full Usage:
Hyperbolic.Atanh(x)
Parameters:
float
Returns: float
|
|
Full Usage:
Hyperbolic.Cosh(x)
Parameters:
float
-
The argument.
Returns: float
Hyperbolic cosine.
|
Hyperbolic cosine, i.e. (Exp(x)+Exp(-x))/2.
|
Full Usage:
Hyperbolic.Coth(x)
Parameters:
float
-
The argument.
Returns: float
Hyperbolic cotangent.
|
Hyperbolic cotangent, i.e. Cosh(x)/Sinh(x).
|
Full Usage:
Hyperbolic.Csch(x)
Parameters:
float
-
The argument.
Returns: float
Hyperbolic cosecant.
|
Hyperbolic cosecant, i.e. 1/Sinh(x) = 2/(Exp(x)-Exp(-x)).
|
Full Usage:
Hyperbolic.CschTimesX(x)
Parameters:
float
-
The argument.
Returns: float
Hyperbolic cosecant, multiplied with the argument x.
|
Hyperbolic cosecant, multiplied with the argument x, i.e. x*Csch(x) = x/Sinh(x).
|
Full Usage:
Hyperbolic.ExpMinusOne(x)
Parameters:
float
-
Function argument
Returns: float
The value Exp(x)-1
|
Calculates Exp(x)-1 with better accuracy around x=0.
|
Full Usage:
Hyperbolic.Langevin(x)
Parameters:
float
-
The argument.
Returns: float
Langevin function Coth(x)-1/x.
|
Langevin function, which is defined as Coth(x)-1/x.
|
Full Usage:
Hyperbolic.Log1p(x)
Parameters:
float
-
The x value
Returns: float
Log(1+x) with better accuracy for very small x.
|
Calculates the natural logarithm of 1+x with better accuracy for very small x.
|
Full Usage:
Hyperbolic.OneMinusExp(x)
Parameters:
float
-
Function argument
Returns: float
The value 1-Exp(x)
|
Calculates 1-Exp(x) with better accuracy around x=0.
|
Full Usage:
Hyperbolic.Sech(x)
Parameters:
float
-
The argument.
Returns: float
Hyperbolic cosecant.
|
Hyperbolic cosecant, i.e. 1/Cosh(x) = 2/(Exp(x)+Exp(-x)).
|
Full Usage:
Hyperbolic.Sinh(x)
Parameters:
float
-
The argument.
Returns: float
Hyperbolic sine.
|
Hyperbolic sine, i.e. (Exp(x)-Exp(-x))/2.
|
Full Usage:
Hyperbolic.SinhAxBxTimesCschX(x, a, b)
Parameters:
float
-
The argument.
a : float
-
The first prefactor.
b : float
-
The second prefactor.
Returns: float
The function f(x,a,b) = [Exp(a x)-Exp(b x)]/[Exp(x)-Exp(-x)].
|
Calculates [Exp(a x)-Exp(b x)]/[Exp(x)-Exp(-x)].
|
Full Usage:
Hyperbolic.Tanh(x)
Parameters:
float
-
The argument.
Returns: float
Hyperbolic tangent.
|
Hyperbolic tangent, i.e. Sinh(x)/Cosh(x).
|