System Namespace Math Class
Returns the hyperbolic cosine of the specified angle.
[ VB ]
Public Shared Function Cosh ( _
ByVal value As Double _
) As Double
[ C# ]
public static double Cosh (
double value
);
[ C++ ]
public: static double Cosh (
double value
);
[ JScript ]
public static function Cosh (
value : double
) : double;
- value
- An angle, measured in radians.
The hyperbolic cosine of value. If value is equal to NegativeInfinity or PositiveInfinity, PositiveInfinity is returned. If value is equal to NaN, NaN is returned.
The angle, value, must be in radians. Multiply by π/180 to convert degrees to radians.
Math Members