Math.Cosh()是內置的Math類方法,該方法返回給定雙值參數的雙曲餘弦值。
用法:
public static double Cosh(double num)
參數:
- num:它是要返回其雙曲餘弦值的數字,並且此參數的類型為System.Double。
返回值:該方法返回num類型為System.Double的雙曲餘弦。如果num等於NegativeInfinity或PositiveInfinity,則返回PositiveInfinity。如果num等於NaN,則返回NaN。
例:
Input : 60.0 Output : 5.71003694907842E+25
以下示例程序旨在說明Math.Cosh方法:
示例1:
// 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);
}
}
輸出:
The cosh of num1 = 5.71003694907842E+25 The cosh of num2 = 1 The cosh of num3 = 1.54308063481524
示例2:
// C# praogram 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);
}
}
輸出:
The cosh of num1 = 1.14023832107643 The cosh of num2 = 29937.0708659498 The cosh of num3 = 1.74671355287425E+19
相關用法
- C# DateTimeOffset.Add()用法及代碼示例
- C# String.Contains()用法及代碼示例
- C# Math.Sin()用法及代碼示例
- C# Math.Cos()用法及代碼示例
- C# Dictionary.Add()用法及代碼示例
- C# Math.Tan()用法及代碼示例
- C# Math.Abs()方法用法及代碼示例
- C# Math.Exp()用法及代碼示例
- C# Math.Abs()函數用法及代碼示例
注:本文由純淨天空篩選整理自Akanksha_Rai大神的英文原創作品 C# | Math.Cosh() Method。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。