Java - Math ulp(float x) 方法



描述

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

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

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

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

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

声明

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

public static float ulp(float f)

参数

f − 将返回其 ulp 的浮点值

返回值

此方法返回参数的 ulp 大小

异常

从正浮点值获取 ulp 示例

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

package com.tutorialspoint;

public class MathDemo {

   public static void main(String[] args) {

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

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

输出

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

Math.ulp(45.0)=3.8146973E-6

从负浮点值获取 ulp 示例

以下示例演示了使用 Math ulp() 方法为负浮点值获取值。

package com.tutorialspoint;

public class MathDemo {

   public static void main(String[] args) {

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

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

输出

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

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

从零浮点值获取 ulp 示例

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

package com.tutorialspoint;

public class MathDemo {

   public static void main(String[] args) {

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

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

输出

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

Math.ulp(0.0)=1.4E-45
java_lang_math.htm
广告