Java - StrictMath ulp(float x) 方法



描述

Java StrictMath ulp(float f) 方法返回参数的 ulp 大小。浮点值的 ulp 是该浮点值与下一个更大数量级的浮点值之间的正距离。请注意,对于非 NaN 的 x,ulp(-x) == ulp(x)。特殊情况:

  • 如果参数是 NaN,则结果为 NaN。

  • 如果参数是正无穷大或负无穷大,则结果是正无穷大。

  • 如果参数是正零或负零,则结果是 Float.MIN_VALUE。

  • 如果参数是 Float.MAX_VALUE,则结果等于 2104

声明

以下是java.lang.StrictMath.ulp() 方法的声明

public static float ulp(float f)

参数

f − 将返回其 ulp 的浮点值

返回值

此方法返回参数的 ulp 大小

异常

示例:获取正浮点值的 ulp

以下示例演示了对正浮点值使用 StrictMath ulp() 方法。

package com.tutorialspoint;
public class StrictMathDemo {
   public static void main(String[] args) {

      // get a float number
      float x = 45.0f;

      // print the radian for this float
      System.out.println("StrictMath.ulp(" + x + ")=" + StrictMath.ulp(x));
   }
}

输出

让我们编译并运行上述程序,这将产生以下结果:

StrictMath.ulp(45.0)=3.8146973E-6

示例:获取负浮点值的 ulp

以下示例演示了如何使用 StrictMath ulp() 方法来获取负浮点值的 ulp。

package com.tutorialspoint;
public class StrictMathDemo {
   public static void main(String[] args) {

      // get a float number
      float x = -45.0f;

      // print the radian for this float
      System.out.println("StrictMath.ulp(" + x + ")=" + StrictMath.ulp(x));
   }
}

输出

让我们编译并运行上述程序,这将产生以下结果:

StrictMath.ulp(-45.0)=3.8146973E-6

示例:获取零浮点值的 ulp

以下示例演示了如何使用 StrictMath ulp() 方法来获取零浮点值的 ulp。

package com.tutorialspoint;
public class StrictMathDemo {
   public static void main(String[] args) {

      // get a float number
      float x = 0.0f;

      // print the radian for this float
      System.out.println("StrictMath.ulp(" + x + ")=" + StrictMath.ulp(x));
   }
}

输出

让我们编译并运行上述程序,这将产生以下结果:

StrictMath.ulp(0.0)=1.4E-45
java_lang_strictmath.htm
广告