Math.Sinh() es el método de clase Math incorporado que devuelve el seno hiperbólico de un argumento de valor doble dado (ángulo especificado).
Sintaxis:
public static double Sinh(double num)
Parámetros:
num: Es el número cuyo seno hiperbólico se quiere devolver y el tipo de este parámetro es System.Double .
Valor devuelto: el método devuelve el Seno hiperbólico de num de tipo System.Double . Si num es igual a NegativeInfinity, PositiveInfinity o NaN, este método devuelve un Double igual a num.
Input : num = 60.0 Output : 5.71003695E25
Los siguientes programas ilustran el método Math.Sinh:
Programa 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); } }
Producción:
The sinh of num1 = 8.34401696285252E+33 The sinh of num2 = 0 The sinh of num3 = 1.1752011936438
Programa 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); } }
Producción:
The sinh of num1 = 0.54785347388804 The sinh of num2 = 29937.0708492481 The sinh of num3 = 1.74671355287425E+19
Publicación traducida automáticamente
Artículo escrito por Akanksha_Rai y traducido por Barcelona Geeks. The original can be accessed here. Licence: CCBY-SA