C# | Math.Sinh() Method Last Updated : 26 Oct, 2021 Comments Improve Suggest changes Like Article Like Report Math.Sinh() is the inbuilt Math class method which returns the hyperbolic sine of a given double value argument(specified angle).Syntax: public static double Sinh(double num) Parameters: num: It is the number whose hyperbolic sine is to be returned and type of this parameter is System.Double. Return Value: The method returns the hyperbolic Sine of num of type System.Double. If num is equal to NegativeInfinity, PositiveInfinity, or NaN, this method returns a Double equal to num. Input : num = 60.0 Output : 5.71003695E25 Below programs illustrate the Math.Sinh method:Program 1: Csharp // C# program to illustrate the // Math.Sinh() using System; class GFG { // Main Method public static void Main(String[] args) { double num1 = 78.8, num2 = 0.0, num3 = 1.0; // It returns the hyperbolic sine of specified // angle in radian double sinhvalue = Math.Sinh(num1); Console.WriteLine("The sinh of num1 = " + sinhvalue); sinhvalue = Math.Sinh(num2); Console.WriteLine("The sinh of num2 = " + sinhvalue); sinhvalue = Math.Sinh(num3); Console.WriteLine("The sinh of num3 = " + sinhvalue); } } Output: The sinh of num1 = 8.34401696285252E+33 The sinh of num2 = 0 The sinh of num3 = 1.1752011936438 Program 2: Csharp // C# program to illustrate the // Math.Sinh() Method using System; class GFG { // Main Method public static void Main(String[] args) { double num1 = (30 * (Math.PI)) / 180, num2 = 11.0, num3 = 45.0; // It returns the hyperbolic sine of // angle in radian double sinhvalue = Math.Sinh(num1); Console.WriteLine("The sinh of num1 = " + sinhvalue); sinhvalue = Math.Sinh(num2); Console.WriteLine("The sinh of num2 = " + sinhvalue); sinhvalue = Math.Sinh(num3); Console.WriteLine("The sinh of num3 = " + sinhvalue); } } Output: The sinh of num1 = 0.54785347388804 The sinh of num2 = 29937.0708492481 The sinh of num3 = 1.74671355287425E+19 Comment More infoAdvertise with us Next Article C# | Math.Cosh() Method A Akanksha_Rai Follow Improve Article Tags : Misc C# CSharp-method CSharp-Math Practice Tags : Misc Similar Reads C# | Math.Sin() Method Math.Sin() is an inbuilt Math class method which returns the sine of a given double value argument(specified angle). Syntax: public static double Sin(double num) Parameter: num: It is the angle(measured in radian) whose sine is to be returned and the type of this parameter is System.Double. Return V 2 min read C# | Math.Tanh() Method Math.Tanh() is the inbuilt Math class method which returns the hyperbolic tan of a given double value argument. The result will be NaN if the given argument is NaN.Syntax: public static double Tanh(double num) Parameter: num: It is the number whose hyperbolic tan is to be returned and type of this p 2 min read JavaScript Math sinh() Method The JavaScript Math.sinh() is an inbuilt method in JavaScript that is used to calculate the value of the hyperbolic sine of a number. Syntax:Math.sinh(p) Examples:Input : Math.sinh(0) Output : 0 Explanation: Here formula for calculating the hyperbolic sine of any number is: The number e is a mathema 4 min read C# | Math.Cosh() Method Math.Cosh() is the inbuilt Math class method which returns the hyperbolic cosine of a given double value argument. Syntax: public static double Cosh(double num) Parameters: num: It is the number whose hyperbolic cos is to be returned and type of this parameter is System.Double. Return Value: The met 2 min read C# | Math.Asin() Method Math.Asin() is an inbuilt Math class method which returns the angle whose sine value is given as a double value argument. If the argument is NaN, then the result will be NaN. Syntax: public static double Asin(double num) Parameter: num: It is the number that represents a sine and type of this parame 2 min read C# | Math.Asin() Method Math.Asin() is an inbuilt Math class method which returns the angle whose sine value is given as a double value argument. If the argument is NaN, then the result will be NaN. Syntax: public static double Asin(double num) Parameter: num: It is the number that represents a sine and type of this parame 2 min read Like