在C#中,Exp(Single)是MathF类方法,用于将e提升为指定的幂。这里e是一个数学常数,其值约为2.71828。
用法: public static float Exp (float x);
Here, x is the required number of type System.Single which specifies a power.
返回类型:它返回升为System.Single类型的幂x的数字e。
注意:
- 如果x等于NaN,则返回值为NaN。
- 如果x等于PositiveInfinity,则返回值为Infinity。
- 如果x等于NegativeInfinity,则返回值为0。
示例1:
// C# Program to illustrate the
// MathF.Exp(Single) Method
using System;
class Geeks {
// Main Method
public static void Main()
{
// using the method
Console.WriteLine(MathF.Exp(7.0f));
Console.WriteLine(MathF.Exp(458.95f));
Console.WriteLine(MathF.Exp(9.487f));
Console.WriteLine(MathF.Exp(0.00f));
}
}
输出:
1096.633 Infinity 13187.18 1
示例2:
// C# Program to illustrate the
// MathF.Exp(Single) Method by
// taking NaN, PositiveInfinity
// and NegativeInfinity]
using System;
class Geeks {
// Main Method
public static void Main()
{
// Taking NaN
Console.WriteLine(MathF.Exp(Single.NaN));
// Taking PositiveInfinity
Console.WriteLine(MathF.Exp(Single.PositiveInfinity));
// Taking NegativeInfinity
Console.WriteLine(MathF.Exp(Single.NegativeInfinity));
}
}
输出:
NaN Infinity 0
相关用法
- C# MathF.Cos()用法及代码示例
- C# MathF.Tan()用法及代码示例
- C# MathF.Abs()用法及代码示例
- C# MathF.Min()用法及代码示例
- C# MathF.Sin()用法及代码示例
- C# MathF.Pow()用法及代码示例
- C# MathF.Log()用法及代码示例
- C# MathF.Max()用法及代码示例
- C# MathF.Cbrt()用法及代码示例
- C# Char.GetTypeCode()用法及代码示例
- C# Char.GetHashCode()用法及代码示例
- C# MathF.Atan()用法及代码示例
- C# BitArray.RightShift()用法及代码示例
- C# BitArray.LeftShift()用法及代码示例
- C# Int16.GetTypeCode用法及代码示例
注:本文由纯净天空筛选整理自Kirti_Mangal大神的英文原创作品 MathF.Exp() Method in C# with Examples。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。