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。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。