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.





















Home »
  C# Tutorial »
    System »




Array
BitConverter
Boolean
Byte
Char
Console
ConsoleKeyInfo
Convert
DateTime
DateTimeOffset
Decimal
Double
Enum
Environment
Exception
Guid
Int16
Int32
Int64
Math
OperatingSystem
Random
SByte
Single
String
StringComparer
TimeSpan
TimeZone
TimeZoneInfo
Tuple
Tuple
Tuple
Type
UInt16
UInt32
UInt64
Uri
Version