En C#, Exp(Single) es un método de clase MathF que se usa para devolver la e elevada a la potencia especificada. Aquí e es una constante matemática cuyo valor es aproximadamente 2.71828 .
Sintaxis: public static float Exp (float x);
Aquí, x es el número requerido de tipo System.Single que especifica una potencia.Tipo de retorno: Devuelve un número e elevado a la potencia x de tipo System.Single .
Nota:
- Si x es igual a NaN , el valor de retorno será NaN .
- Si x es igual a PositiveInfinity , el valor de retorno será Infinity .
- Si x es igual a NegativeInfinity , el valor de retorno será 0 .
Ejemplo 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)); } }
Producción:
1096.633 Infinity 13187.18 1
Ejemplo 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)); } }
Producción:
NaN Infinity 0
Publicación traducida automáticamente
Artículo escrito por Kirti_Mangal y traducido por Barcelona Geeks. The original can be accessed here. Licence: CCBY-SA