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 BigDecimalBigDecimalMath. divide(BigDecimal a, BigDecimal b, Precision resultPrecision)static BigDecimalBigDecimalMath. divide(BigDecimal a, BigInteger b, Precision resultPrecision)static BigDecimalBigDecimalMath. 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.BigDecimalBigRational. 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 BigDecimalPow. pow(BigDecimal x, BigInteger n, Precision prec)Power function for large integer exponents (also negative)static BigDecimalPow. 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 PrecisionPrecision. add(int addend)PrecisionPrecision. multiply(int multiplier)static PrecisionPrecision. of(double x)static PrecisionPrecision. of(float x)static PrecisionPrecision. of(BigDecimal x)The precision of a BigDecimal, with 0 for zero values.static PrecisionPrecision. valueOf(int digits)Methods in de.tilman_neumann.jml.precision with parameters of type Precision Modifier and Type Method Description intPrecision. 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 BigDecimalExp. exp(BigDecimal x, Precision outPrec)static BigDecimalLn. ln(BigDecimal x, Precision outPrec)
-