Uses of Class
org.apache.commons.math3.fraction.BigFraction
Packages that use BigFraction
Package
Description
Univariate real polynomials implementations, seen as differentiable
univariate real functions.
Implementations of common discrete and continuous distributions.
Fraction number type and fraction number formatting.
This package provides basic 3D geometry components.
This package provides basic 2D geometry components.
Linear algebra support.
This package provides classes to solve non-stiff Ordinary Differential Equations problems.
Classes providing hypothesis testing.
-
Uses of BigFraction in org.apache.commons.math3.analysis.polynomials
Fields in org.apache.commons.math3.analysis.polynomials with type parameters of type BigFractionModifier and TypeFieldDescriptionprivate static final List<BigFraction> PolynomialsUtils.CHEBYSHEV_COEFFICIENTSCoefficients for Chebyshev polynomials.private static final List<BigFraction> PolynomialsUtils.HERMITE_COEFFICIENTSCoefficients for Hermite polynomials.private static final Map<PolynomialsUtils.JacobiKey, List<BigFraction>> PolynomialsUtils.JACOBI_COEFFICIENTSCoefficients for Jacobi polynomials.private static final List<BigFraction> PolynomialsUtils.LAGUERRE_COEFFICIENTSCoefficients for Laguerre polynomials.private static final List<BigFraction> PolynomialsUtils.LEGENDRE_COEFFICIENTSCoefficients for Legendre polynomials.Methods in org.apache.commons.math3.analysis.polynomials that return BigFractionModifier and TypeMethodDescriptionPolynomialsUtils.RecurrenceCoefficientsGenerator.generate(int k) Generate recurrence coefficients.Method parameters in org.apache.commons.math3.analysis.polynomials with type arguments of type BigFractionModifier and TypeMethodDescriptionprivate static PolynomialFunctionPolynomialsUtils.buildPolynomial(int degree, List<BigFraction> coefficients, PolynomialsUtils.RecurrenceCoefficientsGenerator generator) Get the coefficients array for a given degree.private static voidPolynomialsUtils.computeUpToDegree(int degree, int maxDegree, PolynomialsUtils.RecurrenceCoefficientsGenerator generator, List<BigFraction> coefficients) Compute polynomial coefficients up to a given degree. -
Uses of BigFraction in org.apache.commons.math3.distribution
Methods in org.apache.commons.math3.distribution that return types with arguments of type BigFractionModifier and TypeMethodDescriptionprivate FieldMatrix<BigFraction> KolmogorovSmirnovDistribution.createH(double d) Deprecated.CreatesHof sizem x mas described in [1] (see above). -
Uses of BigFraction in org.apache.commons.math3.fraction
Classes in org.apache.commons.math3.fraction that implement interfaces with type arguments of type BigFractionModifier and TypeClassDescriptionclassRepresentation of a rational number without any overflow.classRepresentation of a rational number without any overflow.classRepresentation of the fractional numbers without any overflow field.Fields in org.apache.commons.math3.fraction declared as BigFractionModifier and TypeFieldDescriptionstatic final BigFractionBigFraction.FOUR_FIFTHSA fraction representing "4/5".static final BigFractionBigFraction.MINUS_ONEA fraction representing "-1 / 1".static final BigFractionBigFraction.ONEA fraction representing "1".static final BigFractionBigFraction.ONE_FIFTHA fraction representing "1/5".static final BigFractionBigFraction.ONE_HALFA fraction representing "1/2".static final BigFractionBigFraction.ONE_QUARTERA fraction representing "1/4".static final BigFractionBigFraction.ONE_THIRDA fraction representing "1/3".static final BigFractionBigFraction.THREE_FIFTHSA fraction representing "3/5".static final BigFractionBigFraction.THREE_QUARTERSA fraction representing "3/4".static final BigFractionBigFraction.TWOA fraction representing "2 / 1".static final BigFractionBigFraction.TWO_FIFTHSA fraction representing "2/5".static final BigFractionBigFraction.TWO_QUARTERSA fraction representing "2/4".static final BigFractionBigFraction.TWO_THIRDSA fraction representing "2/3".static final BigFractionBigFraction.ZEROA fraction representing "0".Methods in org.apache.commons.math3.fraction that return BigFractionModifier and TypeMethodDescriptionBigFraction.abs()Returns the absolute value of thisBigFraction.BigFraction.add(int i) Adds the value of this fraction to the passedinteger, returning the result in reduced form.BigFraction.add(long l) Adds the value of this fraction to the passedlong, returning the result in reduced form.BigFraction.add(BigInteger bg) Adds the value of this fraction to the passedBigInteger, returning the result in reduced form.BigFraction.add(BigFraction fraction) Adds the value of this fraction to another, returning the result in reduced form.BigFraction.divide(int i) Divide the value of this fraction by the passedint, iethis * 1 / i, returning the result in reduced form.BigFraction.divide(long l) Divide the value of this fraction by the passedlong, iethis * 1 / l, returning the result in reduced form.BigFraction.divide(BigInteger bg) Divide the value of this fraction by the passedBigInteger, iethis * 1 / bg, returning the result in reduced form.BigFraction.divide(BigFraction fraction) Divide the value of this fraction by another, returning the result in reduced form.BigFractionField.getOne()Get the multiplicative identity of the field.static BigFractionBigFraction.getReducedFraction(int numerator, int denominator) Creates aBigFractioninstance with the 2 parts of a fraction Y/Z.BigFractionField.getZero()Get the additive identity of the field.BigFraction.multiply(int i) Multiply the value of this fraction by the passedint, returning the result in reduced form.BigFraction.multiply(long l) Multiply the value of this fraction by the passedlong, returning the result in reduced form.BigFraction.multiply(BigInteger bg) Multiplies the value of this fraction by the passedBigInteger, returning the result in reduced form.BigFraction.multiply(BigFraction fraction) Multiplies the value of this fraction by another, returning the result in reduced form.BigFraction.negate()Return the additive inverse of this fraction, returning the result in reduced form.Parses a string to produce aBigFractionobject.BigFractionFormat.parse(String source, ParsePosition pos) Parses a string to produce aBigFractionobject.ProperBigFractionFormat.parse(String source, ParsePosition pos) Parses a string to produce aBigFractionobject.BigFraction.pow(int exponent) Returns aBigFractionwhose value is(this<sup>exponent</sup>), returning the result in reduced form.BigFraction.pow(long exponent) Returns aBigFractionwhose value is (thisexponent), returning the result in reduced form.BigFraction.pow(BigInteger exponent) Returns aBigFractionwhose value is (thisexponent), returning the result in reduced form.BigFraction.reciprocal()Return the multiplicative inverse of this fraction.BigFraction.reduce()Reduce thisBigFractionto its lowest terms.BigFraction.subtract(int i) Subtracts the value of anintegerfrom the value of thisBigFraction, returning the result in reduced form.BigFraction.subtract(long l) Subtracts the value of alongfrom the value of thisBigFraction, returning the result in reduced form.BigFraction.subtract(BigInteger bg) Subtracts the value of anBigIntegerfrom the value of thisBigFraction, returning the result in reduced form.BigFraction.subtract(BigFraction fraction) Subtracts the value of another fraction from the value of this one, returning the result in reduced form.Methods in org.apache.commons.math3.fraction that return types with arguments of type BigFractionModifier and TypeMethodDescriptionClass<? extends FieldElement<BigFraction>> BigFractionField.getRuntimeClass()Returns the runtime class of the FieldElement.Methods in org.apache.commons.math3.fraction with parameters of type BigFractionModifier and TypeMethodDescriptionBigFraction.add(BigFraction fraction) Adds the value of this fraction to another, returning the result in reduced form.intBigFraction.compareTo(BigFraction object) Compares this object to another based on size.BigFraction.divide(BigFraction fraction) Divide the value of this fraction by another, returning the result in reduced form.BigFractionFormat.format(BigFraction BigFraction, StringBuffer toAppendTo, FieldPosition pos) Formats aBigFractionobject to produce a string.ProperBigFractionFormat.format(BigFraction fraction, StringBuffer toAppendTo, FieldPosition pos) Formats aBigFractionobject to produce a string.static StringBigFractionFormat.formatBigFraction(BigFraction f) This static method calls formatBigFraction() on a default instance of BigFractionFormat.BigFraction.multiply(BigFraction fraction) Multiplies the value of this fraction by another, returning the result in reduced form.BigFraction.subtract(BigFraction fraction) Subtracts the value of another fraction from the value of this one, returning the result in reduced form. -
Uses of BigFraction in org.apache.commons.math3.geometry.euclidean.threed
Methods in org.apache.commons.math3.geometry.euclidean.threed that return BigFractionModifier and TypeMethodDescriptionprivate BigFractionSphereGenerator.minor(BigFraction[] c1, BigFraction[] c2, BigFraction[] c3) Compute a dimension 4 minor, when 4th column is known to be filled with 1.0.Methods in org.apache.commons.math3.geometry.euclidean.threed with parameters of type BigFractionModifier and TypeMethodDescriptionprivate BigFractionSphereGenerator.minor(BigFraction[] c1, BigFraction[] c2, BigFraction[] c3) Compute a dimension 4 minor, when 4th column is known to be filled with 1.0. -
Uses of BigFraction in org.apache.commons.math3.geometry.euclidean.twod
Methods in org.apache.commons.math3.geometry.euclidean.twod that return BigFractionModifier and TypeMethodDescriptionprivate BigFractionDiskGenerator.minor(BigFraction[] c1, BigFraction[] c2) Compute a dimension 3 minor, when 3d column is known to be filled with 1.0.Methods in org.apache.commons.math3.geometry.euclidean.twod with parameters of type BigFractionModifier and TypeMethodDescriptionprivate BigFractionDiskGenerator.minor(BigFraction[] c1, BigFraction[] c2) Compute a dimension 3 minor, when 3d column is known to be filled with 1.0. -
Uses of BigFraction in org.apache.commons.math3.linear
Subclasses with type arguments of type BigFraction in org.apache.commons.math3.linearMethods in org.apache.commons.math3.linear with parameters of type BigFractionModifier and TypeMethodDescriptionvoidMatrixUtils.BigFractionMatrixConverter.visit(int row, int column, BigFraction value) Visit one matrix entry.Method parameters in org.apache.commons.math3.linear with type arguments of type BigFractionModifier and TypeMethodDescriptionstatic Array2DRowRealMatrixMatrixUtils.bigFractionMatrixToRealMatrix(FieldMatrix<BigFraction> m) -
Uses of BigFraction in org.apache.commons.math3.ode.nonstiff
Methods in org.apache.commons.math3.ode.nonstiff that return types with arguments of type BigFractionModifier and TypeMethodDescriptionprivate FieldMatrix<BigFraction> AdamsNordsieckTransformer.buildP(int rows) Build the P matrix. -
Uses of BigFraction in org.apache.commons.math3.stat.inference
Methods in org.apache.commons.math3.stat.inference that return types with arguments of type BigFractionModifier and TypeMethodDescriptionprivate FieldMatrix<BigFraction> KolmogorovSmirnovTest.createExactH(double d, int n) CreatesHof sizem x mas described in [1] (see above).