Math.Cosh() es el método de clase Math incorporado que devuelve el coseno hiperbólico de un argumento de valor doble dado.
Sintaxis:
public static double Cosh(double num)
Parámetros:
num: Es el número cuyo coseno hiperbólico se quiere devolver y el tipo de este parámetro es System.Double .
Valor devuelto: el método devuelve el cos hiperbólico de num de tipo System.Double . Si núm es igual a NegativeInfinity o PositiveInfinity, se devuelve PositiveInfinity. Si num es igual a NaN, se devuelve NaN.
Ejemplo:
Input : 60.0 Output : 5.71003694907842E+25
Los siguientes programas ilustran el método Math.Cosh:
Programa 1:
Csharp
// C# program to illustrate the // Math.Cosh() using System; class GFG { // Main Method public static void Main(String[] args) { double num1 = 60.0, num2 = 0.0, num3 = 1.0; // It returns the hyperbolic cosine of // specified angle in radian double coshvalue = Math.Cosh(num1); Console.WriteLine("The cosh of num1 = " + coshvalue); coshvalue = Math.Cosh(num2); Console.WriteLine("The cosh of num2 = " + coshvalue); coshvalue = Math.Cosh(num3); Console.WriteLine("The cosh of num3 = " + coshvalue); } }
Producción:
The cosh of num1 = 5.71003694907842E+25 The cosh of num2 = 1 The cosh of num3 = 1.54308063481524
Programa 2:
Csharp
// C# program to illustrate the // Math.Cosh() 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 cosine of // angle in radian double coshvalue = Math.Cosh(num1); Console.WriteLine("The cosh of num1 = " + coshvalue); coshvalue = Math.Cosh(num2); Console.WriteLine("The cosh of num2 = " + coshvalue); coshvalue = Math.Cosh(num3); Console.WriteLine("The cosh of num3 = " + coshvalue); } }
Producción:
The cosh of num1 = 1.14023832107643 The cosh of num2 = 29937.0708659498 The cosh 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