C# Complex Sinh
Description
Complex Sinh
Returns the hyperbolic sine of the specified
complex number.
Syntax
Complex.Sinh
has the following syntax.
public static Complex Sinh(
Complex value
)
Parameters
Complex.Sinh
has the following parameters.
value
- A complex number.
Returns
Complex.Sinh
method returns The hyperbolic sine of value.
Example
using System;//from ww w. ja v a 2 s. c o m
using System.Numerics;
public class Example
{
public static void Main()
{
Complex[] values = { new Complex(2.3, 1.4),
new Complex(2.3, -1.4) };
foreach (Complex value in values)
Console.WriteLine("Sinh(Asin({0})) = {1}",
value, Complex.Sinh(value));
}
}
The code above generates the following result.