ulp(double num)
ulp(double num)是java中StrictMath类的内置方法,用于获取给定参数的ulp的大小。 double值的ulp是该浮点值与下一个更大的double值之间的正距离。
一些特殊情况是:
- 如果参数为NaN,则结果为NaN。
- 如果参数为正或负无穷大,则结果为正无穷大。
- 如果参数为正数或负零,则结果为Double.MIN_VALUE。
- 如果参数为±Double.MAX_VALUE,则结果等于2^971。
用法:
public static double ulp(double num)
参数:该方法接受一个参数num,该参数num是要返回其ulp的双精度浮点值。
返回值:ulp方法返回参数ulp的大小。
例子:
Input: num = 5.7 Output: 8.881784197001252E-16 Input: num = 0.0 Output: 4.9E-324
以下示例程序旨在说明java.lang.StrictMath.ulp()方法:
示例1:
// Java praogram to illustrate the
// java.lang.StrictMath.ulp()
import java.lang.*;
public class GFG {
public static void main(String[] args)
{
double num1 = 9.7, num2 = 4.9;
// Get the size of an ulp of the argument
// using ulp() method
double ulp_Value = StrictMath.ulp(num1);
// Print the size of the ulp
System.out.println(" The Size of ulp of "
+ num1 + " = "
+ ulp_Value);
// Get the size of an ulp of the argument
// using ulp() method
ulp_Value = StrictMath.ulp(num2);
// Print the size of the ulp
System.out.println(" The Size of ulp of "
+ num2 + " = "
+ ulp_Value);
}
}
输出:
The Size of ulp of 9.7 = 1.7763568394002505E-15 The Size of ulp of 4.9 = 8.881784197001252E-16
ulp(float num)
ulp(float num)是Java中StrictMath类的内置方法,用于获取给定参数的ulp的大小。浮点值的ulp是此浮点值与下一个幅度较大的浮点值之间的正距离。
一些特殊情况是:
- 如果参数为NaN,则结果为NaN。
- 如果参数为正或负无穷大,则结果为正无穷大。
- 如果参数为正数或负零,则结果为Float.MIN_VALUE。
- 如果参数为±Float.MAX_VALUE,则结果等于2^104。
用法:
public static float ulp(float num)
参数:该方法接受一个浮点类型num浮点值的参数num。
返回值:ulp方法返回参数ulp的大小。
例子:
Input: num = 5.7 Output: 8.881784197001252E-16 Input: num = 0.0 Output: 4.9E-324
以下示例程序旨在说明java.lang.StrictMath.ulp()方法:
示例1:
// Java praogram to illustrate the
// java.lang.StrictMath.ulp()
import java.lang.*;
public class GFG {
public static void main(String[] args)
{
float num1 = 2.7f, num2 = -4.5f;
// Get the size of an ulp of the argument
// using ulp() method
float ulp_Value = StrictMath.ulp(num1);
// Print the size of the ulp
System.out.println(" The Size of ulp of "
+ num1 + " = "
+ ulp_Value);
// Get the size of an ulp of the argument
// using ulp() method
ulp_Value = StrictMath.ulp(num2);
// Print the size of the ulp
System.out.println(" The Size of ulp of "
+ num2 + " = "
+ ulp_Value);
}
}
输出:
The Size of ulp of 2.7 = 2.3841858E-7 The Size of ulp of -4.5 = 4.7683716E-7
相关用法
- Java StrictMath min()用法及代码示例
- Java StrictMath fma()用法及代码示例
- Java StrictMath cos()用法及代码示例
- Java StrictMath max()用法及代码示例
- Java StrictMath expm1()用法及代码示例
- Java StrictMath multiplyFull()用法及代码示例
- Java StrictMath multiplyHigh()用法及代码示例
- Java StrictMath asin()用法及代码示例
- Java StrictMath toIntExact()用法及代码示例
- Java StrictMath ceil()用法及代码示例
- Java StrictMath subtractExact()用法及代码示例
- Java StrictMath sin()用法及代码示例
- Java StrictMath pow()用法及代码示例
- Java StrictMath exp()用法及代码示例
- Java StrictMath log()用法及代码示例
注:本文由纯净天空筛选整理自ankita_chowrasia大神的英文原创作品 StrictMath ulp() Method In Java with Examples。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。