Binary64 |
Binary64.abs() |
absolute value.
|
Binary64 |
Binary64.acos() |
Arc cosine operation.
|
Binary64 |
Binary64.acosh() |
Inverse hyperbolic cosine operation.
|
Binary64 |
Binary64.add(double a) |
'+' operator.
|
Binary64 |
Binary64.add(Binary64 a) |
Compute this + a.
|
Binary64 |
Binary64.asin() |
Arc sine operation.
|
Binary64 |
Binary64.asinh() |
Inverse hyperbolic sine operation.
|
Binary64 |
Binary64.atan() |
Arc tangent operation.
|
Binary64 |
Binary64.atan2(Binary64 x) |
Two arguments arc tangent operation.
|
Binary64 |
Binary64.atanh() |
Inverse hyperbolic tangent operation.
|
Binary64 |
Binary64.cbrt() |
Cubic root.
|
Binary64 |
Binary64.ceil() |
Get the smallest whole number larger than instance.
|
Binary64 |
Binary64.copySign(double sign) |
Returns the instance with the sign of the argument.
|
Binary64 |
Binary64.copySign(Binary64 sign) |
Returns the instance with the sign of the argument.
|
Binary64 |
Binary64.cos() |
Cosine operation.
|
Binary64 |
Binary64.cosh() |
Hyperbolic cosine operation.
|
Binary64 |
Binary64.divide(double a) |
'÷' operator.
|
Binary64 |
Binary64.divide(Binary64 a) |
Compute this ÷ a.
|
Binary64 |
Binary64.exp() |
Exponential.
|
Binary64 |
Binary64.expm1() |
Exponential minus 1.
|
Binary64 |
Binary64.floor() |
Get the largest whole number smaller than instance.
|
Binary64 |
Binary64Field.getOne() |
Get the multiplicative identity of the field.
|
Binary64 |
Binary64.getPi() |
Get the Archimedes constant π.
|
Binary64 |
Binary64Field.getZero() |
Get the additive identity of the field.
|
Binary64 |
Binary64.hypot(Binary64 y) |
Returns the hypotenuse of a triangle with sides this and y
- sqrt(this2 +y2)
avoiding intermediate overflow or underflow.
|
Binary64 |
Binary64.linearCombination(double[] a,
Binary64[] b) |
Compute a linear combination.
|
Binary64 |
Binary64.linearCombination(double a1,
Binary64 b1,
double a2,
Binary64 b2) |
Compute a linear combination.
|
Binary64 |
Binary64.linearCombination(double a1,
Binary64 b1,
double a2,
Binary64 b2,
double a3,
Binary64 b3) |
Compute a linear combination.
|
Binary64 |
Binary64.linearCombination(double a1,
Binary64 b1,
double a2,
Binary64 b2,
double a3,
Binary64 b3,
double a4,
Binary64 b4) |
Compute a linear combination.
|
Binary64 |
Binary64.linearCombination(Binary64[] a,
Binary64[] b) |
Compute a linear combination.
|
Binary64 |
Binary64.linearCombination(Binary64 a1,
Binary64 b1,
Binary64 a2,
Binary64 b2) |
Compute a linear combination.
|
Binary64 |
Binary64.linearCombination(Binary64 a1,
Binary64 b1,
Binary64 a2,
Binary64 b2,
Binary64 a3,
Binary64 b3) |
Compute a linear combination.
|
Binary64 |
Binary64.linearCombination(Binary64 a1,
Binary64 b1,
Binary64 a2,
Binary64 b2,
Binary64 a3,
Binary64 b3,
Binary64 a4,
Binary64 b4) |
Compute a linear combination.
|
Binary64 |
Binary64.log() |
Natural logarithm.
|
Binary64 |
Binary64.log10() |
Base 10 logarithm.
|
Binary64 |
Binary64.log1p() |
Shifted natural logarithm.
|
Binary64 |
Binary64.multiply(double a) |
'×' operator.
|
Binary64 |
Binary64.multiply(int n) |
Compute n × this.
|
Binary64 |
Binary64.multiply(Binary64 a) |
Compute this × a.
|
Binary64 |
Binary64.negate() |
Returns the additive inverse of this element.
|
Binary64 |
Binary64.newInstance(double v) |
Create an instance corresponding to a constant real value.
|
Binary64 |
Binary64.pow(double p) |
Power operation.
|
Binary64 |
Binary64.pow(int n) |
Integer power operation.
|
Binary64 |
Binary64.pow(Binary64 e) |
Power operation.
|
Binary64 |
Binary64.reciprocal() |
Returns the multiplicative inverse of this element.
|
Binary64 |
Binary64.remainder(double a) |
IEEE remainder operator.
|
Binary64 |
Binary64.remainder(Binary64 a) |
IEEE remainder operator.
|
Binary64 |
Binary64.rint() |
Get the whole number that is the nearest to the instance, or the even one if x is exactly half way between two integers.
|
Binary64 |
Binary64.rootN(int n) |
Nth root.
|
Binary64 |
Binary64.scalb(int n) |
Multiply the instance by a power of 2.
|
Binary64 |
Binary64.sign() |
Compute the sign of the instance.
|
Binary64 |
Binary64.sin() |
Sine operation.
|
Binary64 |
Binary64.sinh() |
Hyperbolic sine operation.
|
Binary64 |
Binary64.sqrt() |
Square root.
|
Binary64 |
Binary64.subtract(double a) |
'-' operator.
|
Binary64 |
Binary64.subtract(Binary64 a) |
Compute this - a.
|
Binary64 |
Binary64.tan() |
Tangent operation.
|
Binary64 |
Binary64.tanh() |
Hyperbolic tangent operation.
|
Binary64 |
Binary64.toDegrees() |
Convert radians to degrees, with error of less than 0.5 ULP
|
Binary64 |
Binary64.toRadians() |
Convert degrees to radians, with error of less than 0.5 ULP
|
Binary64 |
Binary64.ulp() |
Compute least significant bit (Unit in Last Position) for a number.
|