C# Math Sinh
Description
Math Sinh
returns the hyperbolic sine of the specified
angle.
Syntax
Math.Sinh
has the following syntax.
public static double Sinh(
double value
)
Parameters
Math.Sinh
has the following parameters.
value
- An angle, measured in radians.
Returns
Math.Sinh
method returns The hyperbolic sine of value. If value is equal to NegativeInfinity, PositiveInfinity,
or NaN, this method returns a Double equal to value.
Example
The following code shows how to use Math.Sinh method.
using System;//w w w . ja v a 2 s .c o m
public class MainClass{
public static void Main(String[] argv){
System.Console.WriteLine(Math.Sinh(0.5));
}
}
The code above generates the following result.