public class SplitDouble
extends java.lang.Object
A double value is split into a normalized mantissa in the range 0.5 to 1.0, and a corresponding base 2 exponent.
| Modifier and Type | Field and Description |
|---|---|
int |
exponent
The base two exponent.
|
double |
mantissa
The normalized mantissa.
|
| Constructor and Description |
|---|
SplitDouble(double d)
Create SplitDouble object.
|