Uses of Class
de.tilman_neumann.jml.precision.Precision
-
Packages that use Precision Package Description de.tilman_neumann.jml.base de.tilman_neumann.jml.powers de.tilman_neumann.jml.precision de.tilman_neumann.jml.transcendental -
-
Uses of Precision in de.tilman_neumann.jml.base
Methods in de.tilman_neumann.jml.base with parameters of type Precision Modifier and Type Method Description static BigDecimal
BigDecimalMath. divide(BigDecimal a, BigDecimal b, Precision resultPrecision)
static BigDecimal
BigDecimalMath. divide(BigDecimal a, BigInteger b, Precision resultPrecision)
static BigDecimal
BigDecimalMath. multiply(BigDecimal a, BigRational b, Precision resultPrecision)
Computes the product of a and b.
Precision is the natural accuracy measure for multiplications because for each argument, each piece of it (bit, digit, ...) makes its own independent contribution to the result precision.BigDecimal
BigRational. toBigDecimal(Precision decPrec)
-
Uses of Precision in de.tilman_neumann.jml.powers
Methods in de.tilman_neumann.jml.powers with parameters of type Precision Modifier and Type Method Description static BigDecimal
Pow. pow(BigDecimal x, BigInteger n, Precision prec)
Power function for large integer exponents (also negative)static BigDecimal
Pow. powJavaTrunc(BigDecimal x, int n, Precision resultPrecision)
-
Uses of Precision in de.tilman_neumann.jml.precision
Methods in de.tilman_neumann.jml.precision that return Precision Modifier and Type Method Description Precision
Precision. add(int addend)
Precision
Precision. multiply(int multiplier)
static Precision
Precision. of(double x)
static Precision
Precision. of(float x)
static Precision
Precision. of(BigDecimal x)
The precision of a BigDecimal, with 0 for zero values.static Precision
Precision. valueOf(int digits)
Methods in de.tilman_neumann.jml.precision with parameters of type Precision Modifier and Type Method Description int
Precision. compareTo(Precision other)
-
Uses of Precision in de.tilman_neumann.jml.transcendental
Methods in de.tilman_neumann.jml.transcendental with parameters of type Precision Modifier and Type Method Description static BigDecimal
Exp. exp(BigDecimal x, Precision outPrec)
static BigDecimal
Ln. ln(BigDecimal x, Precision outPrec)
-