當前位置: 首頁>>代碼示例 >>用法及示例精選 >>正文


C# Math.Exp()用法及代碼示例


在C#中,Exp()是Math類方法,用於將e提升為指定的冪。這裏e是一個數學常數,其值約為2.71828。 Exp()是Log()的逆。

用法:

public static double Exp (double num);

參數:


  • num:這是System.Double類型的必需數字,用於指定功率。

返回類型:它返回一個數字e,該數字升為System.Double類型的冪num。

注意:

  • 如果num等於NaN,則返回值為NaN。
  • 如果num等於PositiveInfinity,則返回值為Infinity。
  • 如果num等於NegativeInfinity,則返回值為0。

示例1:

// C# Program to illustrate the 
// Math.Exp(Double) Method 
using System; 
   
class Geeks { 
   
    // Main Method 
    public static void Main() 
    { 
   
        // using the method 
        Console.WriteLine(Math.Exp(10.0)); 
        Console.WriteLine(Math.Exp(15.57)); 
        Console.WriteLine(Math.Exp(529.548)); 
        Console.WriteLine(Math.Exp(0.00)); 
    } 
}
輸出:
22026.4657948067
5780495.71030692
9.54496417945595E+229
1

示例2:

// C# Program to illustrate the 
// Math.Exp(Double) Method by  
// taking NaN, PositiveInfinity 
// and NegativeInfinity] 
using System; 
   
class Geeks { 
   
    // Main Method 
    public static void Main() 
    { 
   
        // Taking NaN 
        Console.WriteLine(Math.Exp(Double.NaN)); 
          
        // Taking PositiveInfinity 
        Console.WriteLine(Math.Exp(Double.PositiveInfinity)); 
          
        // Taking NegativeInfinity 
        Console.WriteLine(Math.Exp(Double.NegativeInfinity)); 
    } 
}
輸出:
NaN
Infinity
0

參考: https://docs.microsoft.com/en-us/dotnet/api/system.math.exp?view=netcore-2.1



相關用法


注:本文由純淨天空篩選整理自Kirti_Mangal大神的英文原創作品 C# | Math.Exp() Method。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。