En C#, Exp() es un método de clase matemática 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 . Exp() es el inverso de Log() .
Sintaxis:
public static double Exp (double num);
Parámetro:
num: Es el número requerido de tipo System.Double que especifica una potencia.
Tipo de retorno: Devuelve un número e elevado a la potencia num de tipo System.Double .
Nota:
- Si num es igual a NaN , el valor de retorno será NaN .
- Si num es igual a PositiveInfinity , el valor de retorno será Infinity .
- Si num es igual a NegativeInfinity , el valor de retorno será 0 .
Ejemplo 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)); } }
Producción:
22026.4657948067 5780495.71030692 9.54496417945595E+229 1
Ejemplo 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)); } }
Producción:
NaN Infinity 0
Referencia: https://docs.microsoft.com/en-us/dotnet/api/system.math.exp?view=netcore-2.1
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