Uses of Class
org.apache.commons.math4.legacy.exception.MathArithmeticException
-
Packages that use MathArithmeticException Package Description org.apache.commons.math4.legacy.analysis.differentiation This package holds the main interfaces and basic building block classes dealing with differentiation.org.apache.commons.math4.legacy.analysis.interpolation Univariate real functions interpolation algorithms.org.apache.commons.math4.legacy.core Core math utilities.org.apache.commons.math4.legacy.distribution Implementations of common discrete and continuous distributions.org.apache.commons.math4.legacy.linear Linear algebra support. -
-
Uses of MathArithmeticException in org.apache.commons.math4.legacy.analysis.differentiation
Methods in org.apache.commons.math4.legacy.analysis.differentiation that throw MathArithmeticException Modifier and Type Method Description double
DSCompiler. taylor(double[] ds, int dsOffset, double... delta)
Evaluate Taylor expansion of a derivative structure. -
Uses of MathArithmeticException in org.apache.commons.math4.legacy.analysis.interpolation
Methods in org.apache.commons.math4.legacy.analysis.interpolation that throw MathArithmeticException Modifier and Type Method Description void
FieldHermiteInterpolator. addSamplePoint(T x, T[]... value)
Add a sample point.void
HermiteInterpolator. addSamplePoint(double x, double[]... value)
Add a sample point. -
Uses of MathArithmeticException in org.apache.commons.math4.legacy.core
Methods in org.apache.commons.math4.legacy.core that throw MathArithmeticException Modifier and Type Method Description T
FieldElement. divide(T a)
Compute this ÷ a.T
FieldElement. reciprocal()
Returns the multiplicative inverse ofthis
element. -
Uses of MathArithmeticException in org.apache.commons.math4.legacy.distribution
Constructors in org.apache.commons.math4.legacy.distribution that throw MathArithmeticException Constructor Description EnumeratedDistribution(List<Pair<T,Double>> pmf)
Create an enumerated distribution using the given random number generator and probability mass function enumeration.EnumeratedIntegerDistribution(int[] singletons, double[] probabilities)
Create a discrete distribution.EnumeratedRealDistribution(double[] singletons, double[] probabilities)
Create a discrete real-valued distribution using the given random number generator and probability mass function enumeration. -
Uses of MathArithmeticException in org.apache.commons.math4.legacy.linear
Methods in org.apache.commons.math4.legacy.linear that throw MathArithmeticException Modifier and Type Method Description double
RealVector. cosine(RealVector v)
Computes the cosine of the angle between this vector and the argument.BigReal
BigReal. divide(BigReal a)
Compute this ÷ a.ArrayFieldVector<T>
ArrayFieldVector. ebeDivide(ArrayFieldVector<T> v)
Element-by-element division.FieldVector<T>
ArrayFieldVector. ebeDivide(FieldVector<T> v)
Element-by-element division.FieldVector<T>
FieldVector. ebeDivide(FieldVector<T> v)
Element-by-element division.FieldVector<T>
SparseFieldVector. ebeDivide(FieldVector<T> v)
Element-by-element division.FieldVector<T>
ArrayFieldVector. mapDivide(T d)
Map a division operation to each entry.FieldVector<T>
FieldVector. mapDivide(T d)
Map a division operation to each entry.FieldVector<T>
SparseFieldVector. mapDivide(T d)
Map a division operation to each entry.FieldVector<T>
ArrayFieldVector. mapDivideToSelf(T d)
Map a division operation to each entry.FieldVector<T>
FieldVector. mapDivideToSelf(T d)
Map a division operation to each entry.FieldVector<T>
SparseFieldVector. mapDivideToSelf(T d)
Map a division operation to each entry.FieldVector<T>
ArrayFieldVector. mapInv()
Map the 1/x function to each entry.FieldVector<T>
FieldVector. mapInv()
Map the 1/x function to each entry.FieldVector<T>
SparseFieldVector. mapInv()
Map the 1/x function to each entry.FieldVector<T>
ArrayFieldVector. mapInvToSelf()
Map the 1/x function to each entry.FieldVector<T>
FieldVector. mapInvToSelf()
Map the 1/x function to each entry.FieldVector<T>
SparseFieldVector. mapInvToSelf()
Map the 1/x function to each entry.ArrayFieldVector<T>
ArrayFieldVector. projection(ArrayFieldVector<T> v)
Find the orthogonal projection of this vector onto another vector.FieldVector<T>
ArrayFieldVector. projection(FieldVector<T> v)
Find the orthogonal projection of this vector onto another vector.FieldVector<T>
FieldVector. projection(FieldVector<T> v)
Find the orthogonal projection of this vector onto another vector.RealVector
RealVector. projection(RealVector v)
Find the orthogonal projection of this vector onto another vector.FieldVector<T>
SparseFieldVector. projection(FieldVector<T> v)
Find the orthogonal projection of this vector onto another vector.BigReal
BigReal. reciprocal()
Returns the multiplicative inverse ofthis
element.static void
MatrixUtils. solveLowerTriangularSystem(RealMatrix rm, RealVector b)
Solve a system of composed of a Lower Triangular MatrixRealMatrix
.static void
MatrixUtils. solveUpperTriangularSystem(RealMatrix rm, RealVector b)
Solver a system composed of an Upper Triangular MatrixRealMatrix
.void
OpenMapRealVector. unitize()
Converts this vector into a unit vector.void
RealVector. unitize()
Converts this vector into a unit vector.OpenMapRealVector
OpenMapRealVector. unitVector()
Creates a unit vector pointing in the direction of this vector.RealVector
RealVector. unitVector()
Creates a unit vector pointing in the direction of this vector.Constructors in org.apache.commons.math4.legacy.linear that throw MathArithmeticException Constructor Description EigenDecomposition(RealMatrix matrix)
Calculates the eigen decomposition of the given real matrix.
-