Constructs a new quadruple precision number from two double-precision numbers.
Namespace:
Extreme.Mathematics
Assembly:
Extreme.Numerics (in Extreme.Numerics.dll) Version: 8.1.1
public Quad(
double hi,
double lo
)
Public Sub New (
hi As Double,
lo As Double
)
public:
Quad(
double hi,
double lo
)
new :
hi : float *
lo : float -> Quad
Parameters
- hi
- Type: SystemDouble
A double-precision value that contains the most significant part of the number. - lo
- Type: SystemDouble
A double-precision value that contains the least significant part of the number.
The resulting quadruple precision number is the simple sum of hi
and lo.
Reference