Uses of Class
org.apache.commons.math3.linear.NonSquareMatrixException
Packages that use NonSquareMatrixException
Package
Description
Implementations of common discrete-time linear filters.
Linear algebra support.
-
Uses of NonSquareMatrixException in org.apache.commons.math3.filter
Constructors in org.apache.commons.math3.filter that throw NonSquareMatrixExceptionModifierConstructorDescriptionKalmanFilter
(ProcessModel process, MeasurementModel measurement) Creates a new Kalman filter with the given process and measurement models. -
Uses of NonSquareMatrixException in org.apache.commons.math3.linear
Methods in org.apache.commons.math3.linear that throw NonSquareMatrixExceptionModifier and TypeMethodDescriptionAbstractFieldMatrix.getTrace()
Returns the trace of the matrix (the sum of the elements on the main diagonal).double
AbstractRealMatrix.getTrace()
Returns the trace of the matrix (the sum of the elements on the main diagonal).FieldMatrix.getTrace()
Returns the trace of the matrix (the sum of the elements on the main diagonal).double
RealMatrix.getTrace()
Returns the trace of the matrix (the sum of the elements on the main diagonal).static RealMatrix
MatrixUtils.inverse
(RealMatrix matrix) Computes the inverse of the given matrix.static RealMatrix
MatrixUtils.inverse
(RealMatrix matrix, double threshold) Computes the inverse of the given matrix.AbstractFieldMatrix.power
(int p) Returns the result multiplying this with itselfp
times.AbstractRealMatrix.power
(int p) Returns the result of multiplyingthis
with itselfp
times.FieldMatrix.power
(int p) Returns the result multiplying this with itselfp
times.RealMatrix.power
(int p) Returns the result of multiplyingthis
with itselfp
times.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
.