Curriculum
Course: Java Basic
Login

Curriculum

Java Basic

Java Home

0/1

Java Introduction

0/1

Java Get Started

0/1

Java Syntax

0/1

Java Comments

0/1

Java Type Casting

0/1

Java Operators

0/1

Java Booleans

0/1

Java Switch

0/1

Java Break / Continue

0/1

Java Errors and Exception

0/1
Text lesson

ulp()

Example

Find the unit of least precision for different numbers:

System.out.println(Math.ulp(1.0));
System.out.println(Math.ulp(1.0f));
System.out.println(Math.ulp(5000000.0));
System.out.println(Math.ulp(5000000.0f));
System.out.println(Math.ulp(50000000.0));
System.out.println(Math.ulp(50000000.0f));

Definition and Usage

The ulp() method retrieves the unit of least precision of a number.

The unit of least precision signifies the smallest increment that can be made either upwards or downwards from a given number. For instance, for 50000000.0f, the ulp is 4.0, indicating that the next representable number with a float data type above it is 50000004.0f.

Note: The double data type offers greater precision compared to the float data type, resulting in a smaller ulp.

Note: Precision decreases as numbers grow larger, leading to a larger ulp.

Note: The ulp remains unaffected by the sign of a number.

Syntax

public static double ulp(double number)
public static float ulp(float number)

Parameter Values

Parameter

Description

number

“Necessary. A floating-point number.”

Technical Details

Returns:

“A double or float value indicating the unit of least precision.”

Java Version:

1.5+