strictmath_Java StrictMath ulp()方法与示例

strictmath

StrictMath类ulp()方法 (StrictMath Class ulp() method)

Syntax:

句法:

    public static double ulp(double do);
public static float ulp(float fl);

  • ulp() Method is available in java.lang package.

    ulp()方法在java.lang包中可用。

  • ulp(double do) Method is used to return the size of an ulp of the given argument in the method. In this method, an ulp of the given double value parameter is the positive distance between double floating-point value and the given argument double value next larger in magnitude.

    ulp(double do)方法用于返回方法中给定参数的ulp的大小。 在此方法中,给定双值参数的ulp是双浮点值与下一个幅度较大的给定自变量double值之间的正距离。

  • ulp(float fl) Method is used to return the size of an ulp of the given argument in the method. In this method, an ulp of the given float value parameter is the positive distance between float floating-point value and the given argument float value next larger in magnitude.

    ulp(float fl)方法用于返回方法中给定参数的ulp的大小。 在此方法中,给定浮点值参数的ulp是浮点浮点值与给定自变量浮点值之间的正距离,其大小随后更大。

  • These methods don't throw an exception.

    这些方法不会引发异常。

  • These are static methods, it is accessible with the class name and, if we try to access these methods with the class object then we will not get any error.

    这些是静态方法,可以通过类名进行访问,如果尝试使用类对象访问这些方法,则不会出现任何错误。

Parameter(s):

参数:

  • float / double – represents the value represents the double floating point value whose ulp is to be returned.

    float / double-表示该值表示要返回其ulp的double浮点值。

Return value:

返回值:

The return type of the method is float / double, it returns the size of an ulp of the given parameter and return value is of float / double type.

该方法的返回类型为float / double ,它返回给定参数的ulp的大小,返回值为float / double类型。

Note:

注意:

  • If we pass NaN, the method returns the same value (i.e. NaN).

    如果我们通过NaN,则该方法返回相同的值(即NaN)。

  • If we pass an infinity (positive or negative), the method returns the positive infinity.

    如果我们传递无穷大(正数或负数),则该方法将返回正无穷大。

  • If we pass zero (positive or negative), the method returns the Float.MIN_VALUE / Double.MIN_VALUE.

    如果传递零(正数或负数),则该方法返回Float.MIN_VALUE / Double.MIN_VALUE 。

  • If we pass Float.MAX_VALUE, the method returns the 2 raised to the power of 104 and if we pass Double.MAX_VALUE, the method returns the 2 raised to the power of 971.

    如果传递Float.MAX_VALUE ,则该方法返回2的幂,以104的幂表示;如果传递Double.MAX_VALUE ,则该方法返回2的幂为971的幂。

Example:

例:

// Java program to demonstrate the example 
// of signum() method of StrictMath class
public class Ulp {
public static void main(String[] args) {
// variable declarations
double d1 = 0.0;
double d2 = -0.0;
double d3 = 7.0 / 0.0;
double d4 = -7.0 / 0.0;
double d5 = 1285.45;
float f1 = 0.0f;
float f2 = -0.0f;
float f3 = 7.0f / 0.0f;
float f4 = -7.0f / 0.0f;
float f5 = 1285.45f;
System.out.println();
System.out.println("ulp(double d:)");
// Display previous value of d1,d2,d3 ,d4and d5
System.out.println("d1:" + d1);
System.out.println("d2: " + d2);
System.out.println("d3: " + d3);
System.out.println("d4: " + d4);
System.out.println("d5: " + d5);
// Display previous value of f1,f2,f3 ,f4and d5
System.out.println("f1: " + f1);
System.out.println("f2: " + f2);
System.out.println("f3: " + f3);
System.out.println("f4: " + f4);
System.out.println("f5: " + f5);
// Here , we will get (Double.MIN_VALUE) because
// we are passing parameter (0.0)
System.out.println("StrictMath.ulp(d1): " + StrictMath.ulp(d1));
// Here , we will get (Double.MIN_VALUE) because
// we are passing parameter (-0.0) 
System.out.println("StrictMath.ulp(d2): " + StrictMath.ulp(d2));
// Here , we will get (Infinity) because
// we are passing parameter (7.0/0.0) 
System.out.println("StrictMath.ulp(d2): " + StrictMath.ulp(d3));
// Here , we will get (Infinity) because 
// we are passing parameter (-7.0/0.0)
System.out.println("StrictMath.ulp(d2): " + StrictMath.ulp(d4));
// Here , we will get (2 raised to the power of 971) because
// we are passing parameter (1285.45)
System.out.println("StrictMath.ulp(d5): " + StrictMath.ulp(d5));
System.out.println();
System.out.println("ulp(float fl:)");
// Here , we will get (Float.MIN_VALUE) because 
// we are passing parameter (0.0)
System.out.println("StrictMath.ulp(f1): " + StrictMath.ulp(f1));
// Here , we will get (Float.MIN_VALUE) because 
// we are passing parameter (-0.0) 
System.out.println("StrictMath.ulp(f2): " + StrictMath.ulp(f2));
// Here , we will get (Infinity) because 
// we are passing parameter (7.0/0.0) 
System.out.println("StrictMath.ulp(f3): " + StrictMath.ulp(f3));
// Here , we will get (Infinity) because 
// we are passing parameter (-7.0/0.0) 
System.out.println("StrictMath.ulp(f4): " + StrictMath.ulp(f4));
// Here , we will get (2 raised to the power of 971) because
// we are passing parameter (1285.45) 
System.out.println("StrictMath.ulp(f5): " + StrictMath.ulp(f5));
}
}

Output

输出量


ulp(double d:)
d1:0.0
d2: -0.0
d3: Infinity
d4: -Infinity
d5: 1285.45
f1: 0.0
f2: -0.0
f3: Infinity
f4: -Infinity
f5: 1285.45
StrictMath.ulp(d1): 4.9E-324
StrictMath.ulp(d2): 4.9E-324
StrictMath.ulp(d2): Infinity
StrictMath.ulp(d2): Infinity
StrictMath.ulp(d5): 2.2737367544323206E-13ulp(float fl:)
StrictMath.ulp(f1): 1.4E-45
StrictMath.ulp(f2): 1.4E-45
StrictMath.ulp(f3): Infinity
StrictMath.ulp(f4): Infinity
StrictMath.ulp(f5): 1.2207031E-4

翻译自: https://www.includehelp.com/java/strictmath-ulp-method-with-example.aspx

strictmath

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

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

相关文章

八、非规则组织分析及其数学模型——平纹变化组织

非规则组织顾名思义,无法通过一个数学模型来描述所有的非规则组织、对于每一个具体的非规则组织而言,其也有一定的规律性可循,即可通过分析每一个具体的非规则组织的组织点运动规律来建立相应的数学模型。 一、平纹变化组织 平纹变化组织即…

怎么看xp计算机是32位还是64位,教你查看XP系统的不同32位还是64位详细的步骤

电脑中使用的不同的版本如果安装一些大型的游戏的时候都是有技巧来实现的,那在XP电脑中想要知道的对于不同的32位还是64位的版本的文件操作的时候新手是怎么知道自己安装的软件的版本呢,今天小编就来跟大家分享一下教你查看XP系统的不同32位还是64位详细…

微软面试100题2010年版全部答案集锦(含下载地址)

微软等数据结构算法面试100题全部答案集锦作者:July、阿财。时间:二零一一年十月十三日。引言无私分享造就开源的辉煌。今是二零一一年十月十三日,明日14日即是本人刚好开博一周年。在一周年之际,特此分享出微软面试全部100题答案…

get post

1. get是从服务器上获取数据,post是向服务器传送数据。2. get是把参数数据队列加到提交表单的ACTION属性所指的URL中,值和表单内各个字段一一对应,在URL中可以看到。post是通过HTTP post机制,将表单内各个字段与其内容放置在HTML …

LeetCode 27.移除元素 思考分析

题目 给你一个数组 nums 和一个值 val,你需要 原地 移除所有数值等于 val 的元素,并返回移除后数组的新长度。 不要使用额外的数组空间,你必须仅使用 O(1) 额外空间并 原地 修改输入数组。 元素的顺序可以改变。你不需要考虑数组中超出新长…

九、非规则组织分析及其数学模型——曲线斜纹组织

曲线斜纹组织图: 因为其形状酷似抛物线,抛物线又是曲线中的一种,故称为曲线斜纹组织。 特点:1,每一根经纱上的组织点运动规律不变 2,飞数是变化的,故也称为变飞数组织 飞数满足的两个条件&…

ulp通信_Java Math类ulp()方法及示例

ulp通信数学类ulp()方法 (Math class ulp() method) ulp() method is available in java.lang package. ulp()方法在java.lang包中可用。 ulp() method is used to return the size of a ulp of the given argument, where, a ulp of the given value is the positive distance…

计算机公式column,函数公式的左膀右臂:ROW、COLUMN函数知多少

一个公式生成乘法口诀表演示的公式中用到了两个函数:ROW和COLUMN,这两个函数的用途非常广泛,可以配合其他函数实现很多功能(尤其是和VLOOKUP函数),另外和这两个函数相似的还有ROWS和COLUMNS函数,也顺便介绍下。函数说明…

apache2.4.x三种MPM介绍

三种MPM介绍 Apache 2.X 支持插入式并行处理模块,称为多路处理模块(MPM)。在编译apache时必须选择也只能选择一个MPM,对类UNIX系统,…

LeetCode 15. 三数之和 思考分析(双指针解)

目录初解:未考虑去重二解:未考虑去重位置三解:AC题目:给你一个包含 n 个整数的数组 nums,判断 nums 中是否存在三个元素 a,b,c ,使得 a b c 0 ?请你找出所有满足条件且…

十、非规则组织分析及其数学模型——锯齿形斜纹组织

锯齿形斜纹组织图: 分析: 前半齿长度k,表示山谷到山峰的列数,也就是锯齿的宽度; 锯齿飞数s,表示山峰到山峰的行数,也就是锯齿的高度。 起始点相差4格,也就是第一部分整体向上移动…

Linq lamdba GroupJoin外连接示例

其实用from..Linq语句做外连接简单而且便于理解&#xff0c;我个人使用lamdba纯粹是技术上的追求吧 DataTable exceldtnew DataTable();DataTable nomacdtnew DataTable();exceldt exceldt.AsEnumerable().GroupJoin(nomacdt.AsEnumerable(), a > a.Field<String>(&q…

ajax为什么有时候不行,为什么不能用ajax调用

Ajax取值时出现未知的运行时错误的解决方法在Ajax里经常会通过innerHTML来改变界面&#xff0c;这个比使用DOM要简单一些。比如&#xff1a;element.innerHTML "put code here"不过&#xff0c;在IE中&#xff0c;有时候会出现"未知的运行时错误(unknown runti…

Java Hashtable size()方法与示例

哈希表类size()方法 (Hashtable Class size() method) size() method is available in java.util package. size()方法在java.util包中可用。 size() method is used to return the number of key-value pairs that exist in this Hashtable. size()方法用于返回此哈希表中存在…

十一、非规则组织分析及其数学模型——芦席斜纹组织

芦席斜纹组织&#xff1a; 该组织是由左斜和右斜有机的结合在一块的&#xff0c;因为其外观酷似芦席故称之为芦席斜纹组织。 织物组织效果&#xff1a; 所需参数&#xff1a; 其基层组织采用双面加强型斜纹&#xff0c;即分子和分母是相同的组织点&#xff0c;例如2上2下(2个经…

LeetCode 18. 四数之和 思考分析(双指针解)

目录需要注意的几点1、去除剪枝操作2、去重操作的细节code以及效果&#xff1a;题目给定一个包含 n 个整数的数组 nums 和一个目标值 target&#xff0c;判断 nums 中是否存在四个元素 a&#xff0c;b&#xff0c;c 和 d &#xff0c;使得 a b c d 的值与 target 相等&#…

图解DotNet框架之一:编译与执行引擎(上)

众所周知,DotNet框架是非常庞大的,光项目创建时的种类就有WPF,WCF,WF这三种最新的技术,还有以前的Web,WinForm,Service,Mobile等等. 这么复杂和庞大的框架,用文字来描述是远远不够的,所以我准备写一系列图文并茂的文章,把我所知道的所有Net框架中的东西全部串联起来,希望可以给…

【Kissy WaterFall】实行手动加载数据

前言&#xff1a;由于Kissy WaterFall默认是监听滚动事件来实现数据动态加载的&#xff0c;但是有一些情况要用到手动加载数据。以下是使用Kissy WaterFall实现手动加载数据的方法。 最终实现效果&#xff1a;点击”逛更多的商店“会动态加载数据 步骤&#xff1a; 当一页数据加…

web服务器文档根目录在哪里,web服务器根目录在哪

web服务器根目录在哪 内容精选换一换SSL证书通过在客户端浏览器和Web服务器之间建立一条SSL安全通道(访问方式为HTTPS)&#xff0c;实现数据信息在客户端和服务器之间的加密传输&#xff0c;可以防止数据信息的泄露。SSL保证了双方传递信息的安全性&#xff0c;而且用户可以通过…

console java_Java Console writer()方法与示例

console java控制台类writer()方法 (Console Class writer() method) writer() method is available in java.io package. writer()方法在java.io包中可用。 writer() method is used to get a distinct PrintWriter object linked with this Console. writer()方法用于获取与此…