expm1_Java Math类静态double expm1(double d)及其示例

expm1

数学类静态double expm1(double d) (Math Class static double expm1(double d))

  • This method is available in java.lang package.

    此方法在java.lang包中可用。

  • This method is used to return [ the exponential of the given number – 1] in the method or in other words it is used to calculate the ( e raised to the power of the given argument – 1). 

    此方法用于返回方法中的[给定数字的指数– 1],或换句话说,它用于计算(e升至给定参数的幂– 1)。

  • In this method, expm stands for exponentiation. 

    在此方法中,expm代表求幂。

  • This is a static method so this method is accessible with the class name too. 

    这是一个静态方法,因此也可以使用类名访问此方法。

  • The return type of this method is double that means it returns (The exponentiation of the given argument -1) and the argument and return value are of double type. 

    此方法的返回类型为double,表示它返回(给定参数-1的幂),并且参数和返回值均为double类型。

  • In this method we pass only one parameter as an argument in the method of Math class and the given parameter is the exponent to raise the power of e -1. 

    在此方法中,我们仅将一个参数作为参数传递给Math类的方法,并且给定参数是提高e -1幂的指数。

  • This method does not throw any exception.

    此方法不会引发任何异常。

Syntax:

句法:

    public static double expm1(double d){
}

Parameter(s):

参数:

double d – A double value whose exponential to be found..

double d –一个要找到其指数的double值。

Note:

注意:

  • If we pass "NaN" to the function, it returns the "NaN".

    如果我们将“ NaN”传递给函数,它将返回“ NaN”。

  • If we pass positive infinity, it returns the positive infinity.

    如果我们传递正无穷大,它将返回正无穷大。

  • If we pass negative infinity, it returns -1.0.

    如果传递负无穷大,则返回-1.0。

  • If we pass zero (-0 or 0), it returns 0.0.

    如果传递零(-0或0),则返回0.0。

Return value:

返回值:

The return type of this method is double, it returns the exponentiation of the given value.

此方法的返回类型为double ,它返回给定值的幂。

Java程序演示expm1(double d)方法的示例 (Java program to demonstrate example of expm1(double d) method)

// Java program to demonstrate the example of expm1(double d) 
// method of Math Class
public class Expm1Method {
public static void main(String[] args) {
// Here we are declaring few variables
double d1 = 7.0 / 0.0;
double d2 = -7.0 / 0.0;
double d3 = 0.0;
double d4 = -0.0;
double d5 = 0.8;
double d6 = 2;
// Display previous value of d1,d2,d3, d4,d5 and d6 
System.out.println(" Before implementing expm1() so the value of d1 is :" + d1);
System.out.println(" Before implementing expm1() so the value of d2 is :" + d2);
System.out.println(" Before implementing expm1() so the value of d3 is :" + d3);
System.out.println(" Before implementing expm1() so the value of d4 is :" + d4);
System.out.println(" Before implementing expm1() so the value of d5 is :" + d5);
System.out.println(" Before implementing expm1() so the value of d6 is :" + d6);
// Here , we will get (Infinity) because we are passing parameter 
// whose value is (infinity)
System.out.println("After implementing expm1() so the value of d1 is :" + Math.expm1(d1));
// Here , we will get (-1.0) because we are passing parameter 
// whose value is (-infinity)
System.out.println("After implementing expm1() so the value of d2 is :" + Math.expm1(d2));
// Here , we will get (0.0) because we are passing parameter 
// whose value is (0.0)
System.out.println("After implementing expm1() so the value of d3 is :" + Math.expm1(d3));
// Here , we will get (-0.0) because we are passing parameter 
// whose value is (-0.0)
System.out.println("After implementing expm1() so the value of d4 is :" + Math.expm1(d4));
// Here , we will get [(e raised to the power of 0.8) - 1] 
// because we are passing parameter whose value is (0.8)
System.out.println("After implementing expm1() so the value of d5 is :" + Math.expm1(d5));
// Here , we will get [(e raised to the power of 2) - 1] 
// because we are passing parameter whose value is (2)
System.out.println("After implementing expm1() so the value of d6 is :" + Math.expm1(d6));
}
}

Output

输出量

E:\Programs>javac Expm1Method.java
E:\Programs>java Expm1Method
Before implementing expm1() so the value of d1 is :Infinity
Before implementing expm1() so the value of d2 is :-Infinity
Before implementing expm1() so the value of d3 is :0.0
Before implementing expm1() so the value of d4 is :-0.0
Before implementing expm1() so the value of d5 is :0.8
Before implementing expm1() so the value of d6 is :2.0
After implementing expm1() so the value of d1 is :Infinity
After implementing expm1() so the value of d2 is :-1.0
After implementing expm1() so the value of d3 is :0.0
After implementing expm1() so the value of d4 is :-0.0
After implementing expm1() so the value of d5 is :1.2255409284924677
After implementing expm1() so the value of d6 is :6.38905609893065

翻译自: https://www.includehelp.com/java/math-class-static-double-expm1-double-d-with-example.aspx

expm1

本文来自互联网用户投稿,该文观点仅代表作者本人,不代表本站立场。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如若转载,请注明出处:http://www.mzph.cn/news/545699.shtml

如若内容造成侵权/违法违规/事实不符,请联系多彩编程网进行投诉反馈email:809451989@qq.com,一经查实,立即删除!

相关文章

51单片机常用功能及相关内容

一、基本概念: 1、引脚 图1.1 这里只介绍常用及主要的引脚。 I/O口引脚:P0、P1、P2、P3 P0口:39脚~32脚,双向8位三态I/O口,每个口可独立控制,但内部无上拉电阻,为高阻态,故不能正常…

No monitoring data is available

No monitoring data is available because monitoring is not enabled for this deployment share...注解:没有监测数据是可用的。报错具体信息如下:Assembly: mscorlib Assembly Version: 2.0.0.0 File Version: 2.0.50727.5420 (Win7SP1.050727-5400…

oracle chr()和字符连接

SQL> select chr(105)||chr(32)||chr(108)||chr(111)||chr(118)||chr(101)||chr(32)||chr(121)||chr(111)||chr(117) as hi from dual;

第 1-7 课:数组和排序算法 + 面试题

数组的定义与使用 数组是 Java 编程中最重要的数据结构之一,也是最基本的数据结构,Java 中的常用集合 ArrayList、HashMap 等内部的实现都使用到了数组结构。数组是只能用来存储一种类型的集合,可以通过下标访问数值中的所有元素。 数组的声明方式有以下两种,如整数型数组…

gethours_日期getHours()方法以及JavaScript中的示例

gethoursJavaScript Date getHours()方法 (JavaScript Date getHours() method) getHours() method is a Dates class method and it is used to get the only hours from current time. getHours()方法是Date的类方法,用于获取距当前时间仅有的小时数。 It accept…

单词助手(可联网)

基本功能 1. 可实现对本地词库添加、删除单词功能 2. 可实现查词功能,根据英文查释义,优先从本地词库查询,如果本地词库没有就自动网上查询,并将其添加至本地词库 3. 可实现学习功能,每天50词,可分批次学习…

Unity查安卓Native Crash的方法,定位SO报错函数

需要用到两个工具Il2CppDumper和IDA_Pro,网上可以下到对应的软件 可以看到报错的位置是libil2cpp.so 0000000000AFF820 接下来要做的事情就是找到0000000000AFF820对应的函数是哪个 解包 Il2CppDumper解析so文件和符号表,查看对应的函数表 把apk后缀…

WebApi系列~自主宿主HttpSelfHost的实现

回到目录 宿主一词我们不会陌生,它可以看作是一个基础设施,它为一些服务和功能提供最底层的支持,如你的web应用程序可以运行在iis或者apache上,而这两个东西就是web应用程序的宿主,而今天说的自主宿主SelfHost就是说&a…

第 2-2 课:各种内部类和枚举类 + 面试题

内部类不仅经常出现在各种面试题中,还会在 Java 源码中频频出现,因此只有搞明白了 Java 内部类,才能搞定面试和看懂各种 Java 源码。 内部类 Java 内部类,分为以下四种: 成员内部类静态成员内部类局部内部类匿名内部类下面分别来看这些内部类的使用。 成员内部类 定义…

linux系统层次结构_Linux文件系统层次结构问题和解答

linux系统层次结构This section contains Aptitude Questions and Answers on Linux Filesystem Hierarchy. 本节包含有关Linux文件系统层次结构的 Aptitude问答。 1) There are the following statements that are given below, which of them are correct about Linux File …

plsql developer 安装在win7 64位电脑路径问题

plsql developer 如果安装在win7 64位电脑上,安装目录不能有括号或者中文等特殊字符,默认安装路径是C:\Program Files (x86)。——

第 2-4 课:克隆和序列化 + 面试题

克隆 在开始学习克隆之前,我们先来看看下面的代码,普通的对象复制,存在什么问题? class CloneTest {public static void main(String[] args) throws CloneNotSupportedException {// 等号赋值( 基本类型)int number = 6;int number2 = number;// 修改 number2 的值num…

Java StreamTokenizer whitespaceChars()方法及示例

StreamTokenizer类whitespaceChars()方法 (StreamTokenizer Class whitespaceChars() method) whitespaceChars() method is available in java.io package. whitespaceChars()方法在java.io包中可用。 whitespaceChars() method is used to denotes that all the characters l…

Oracle-1 / Oracle及PlsqlDeveloper的设置

1、启动监听器与服务器我的电脑->管理->服务...保证“...listener...”和“...service...”两个服务开启2、客户端软件设置tools->preference->connection->Oracle home设置好Oracle所在的路径3、监听列表设置在Oracle安装目录下找到network文件夹两个文件时 li…

远程拍照并获取图片

主要功能 肉鸡程序启动后可打开摄像头迅速拍摄一张照片,通过服务器发送到主机,发送完成后删除肉鸡本地保存的图片 相关技术 socket网络编程文件操作opencv 代码 肉鸡 #define _WINSOCKAPI_ #define _CRT_SECURE_NO_WARNINGS #define _WINSOCK_DE…

第 2-3 课:抽象类和接口 + 面试题

抽象类 定义 在面向对象的概念中,所有的对象都是通过类来描绘的,但是反过来,并不是所有的类都是用来描绘对象的,如果一个类中没有包含足够的信息来描绘一个具体的对象,这样的类就是抽象类。简单来说,使用关键字 abstract 修饰的类就叫做抽象类。 抽象类使用 示例代码…

CentOS 6.4下操作kdump执行过程

kdump 是一个新的,而且非常可信赖的内核崩溃转储机制。崩溃转储数据可以从一个新启动的内核的上下文中获取,而不是从已经崩溃的内核的上下文。当系统崩溃时,kdump使用kexec启动到第二个内核。第二个内核通常叫做捕获内核(capture …

java jar包示例_Java包getSpecificationVersion()方法和示例

java jar包示例包类的getSpecificationVersion()方法 (Package Class getSpecificationVersion() method) getSpecificationVersion() method is available in java.lang package. getSpecificationVersion()方法在java.lang包中可用。 getSpecificationVersion() method is us…

JAVA类(手机充电、放音乐示例)

练习练习 import java.util.Scanner;//包含包public class ex1 {public static void main(String args[])//程序入口{Phone phone new Phone();//建一个手机phone.logo "SONY";//弄上个牌子phone.battery.power 100;//给电池弄上100电Scanner reader new Scanner…

linux——进程(创建、终止、等待、替换)

进程的基本操作 概念 程序运行的一个实例,其占有一定的空间。 查询某一进程当前情况 ps aux | grep 进程名终止进程 kill -9 pid; //pid指需要终止的进程pid创建 pid_t fork();该函数有两个返回值,对于子进程其返回的是0&#xf…