java.lang.StrictMath.expm1() es un método incorporado en Java que se usa para devolver el exponencial e^num -1 para un valor dado de num . El método da lugar a cuatro casos diferentes:
- El método devuelve NaN cuando el argumento proporcionado es NaN.
- El resultado es infinito positivo cuando el argumento es infinito positivo.
- El resultado es infinito negativo cuando el argumento es infinito negativo.
- Para 0, los métodos devuelven 0 con el mismo signo que el argumento.
Sintaxis:
public static double expm1(double num)
Parámetros: Este método acepta un parámetro num de tipo double y se refiere al valor sobre el que se va a realizar la operación exponencial.
Valor de retorno: el método devolverá el resultado de la operación e num – 1 .
Ejemplos:
Input: num = (1.0/0.0) Output: Infinity Input: 32.2 Output: 9.644557735961714E13
Los siguientes programas ilustran el método java.lang.StrictMath.expm1():
Programa 1:
java
// Java program to illustrate the // java.lang.StrictMath.expm1() import java.lang.*; public class Geeks { public static void main(String[] args) { double num1 = 0.0, num2 = -(1.0/0.0); double num3 = (1.0/0.0), num4 = 32.2; /*It returns e^num - 1 */ double eValue = StrictMath.expm1(num1); System.out.println("The expm1 Value of "+ num1+" = "+eValue); eValue = StrictMath.expm1(num2); System.out.println("The expm1 Value of "+ num2+" = "+eValue); eValue = StrictMath.expm1(num3); System.out.println("The expm1 Value of "+ num3+" = "+eValue); eValue = StrictMath.expm1(num4); System.out.println("The expm1 Value of "+ num4+" = "+eValue);} }
Programa 2:
java
// Java program to illustrate the // java.lang.StrictMath.expm1() import java.lang.*; public class Geeks { public static void main(String[] args) { double num1 = 2.0 , num2 = -51.8; double num3 = 61.0, num4 = -32.2; /*It returns e^num - 1 */ double eValue = StrictMath.expm1(num1); System.out.println("The expm1 Value of "+ num1+" = "+eValue); eValue = StrictMath.expm1(num2); System.out.println("The expm1 Value of "+ num2+" = "+eValue); eValue = StrictMath.expm1(num3); System.out.println("The expm1 Value of "+ num3+" = "+eValue); eValue = StrictMath.expm1(num4); System.out.println("The expm1 Value of "+ num4+" = "+eValue); } }
Publicación traducida automáticamente
Artículo escrito por ankita_chowrasia y traducido por Barcelona Geeks. The original can be accessed here. Licence: CCBY-SA