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).doubleAbstractRealMatrix.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).doubleRealMatrix.getTrace()Returns the trace of the matrix (the sum of the elements on the main diagonal).static RealMatrixMatrixUtils.inverse(RealMatrix matrix) Computes the inverse of the given matrix.static RealMatrixMatrixUtils.inverse(RealMatrix matrix, double threshold) Computes the inverse of the given matrix.AbstractFieldMatrix.power(int p) Returns the result multiplying this with itselfptimes.AbstractRealMatrix.power(int p) Returns the result of multiplyingthiswith itselfptimes.FieldMatrix.power(int p) Returns the result multiplying this with itselfptimes.RealMatrix.power(int p) Returns the result of multiplyingthiswith itselfptimes.static voidMatrixUtils.solveLowerTriangularSystem(RealMatrix rm, RealVector b) Solve a system of composed of a Lower Triangular MatrixRealMatrix.static voidMatrixUtils.solveUpperTriangularSystem(RealMatrix rm, RealVector b) Solver a system composed of an Upper Triangular MatrixRealMatrix.