|
||||||||||
| PREV NEXT | FRAMES NO FRAMES | |||||||||
| Packages that use NonSquareMatrixException | |
|---|---|
| org.apache.commons.math3.filter | Implementations of common discrete-time linear filters. |
| org.apache.commons.math3.linear | Linear algebra support. |
| Uses of NonSquareMatrixException in org.apache.commons.math3.filter |
|---|
| Constructors in org.apache.commons.math3.filter that throw NonSquareMatrixException | |
|---|---|
KalmanFilter(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 NonSquareMatrixException | |
|---|---|
double |
AbstractRealMatrix.getTrace()
Returns the trace of the matrix (the sum of the elements on the main diagonal). |
T |
AbstractFieldMatrix.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). |
T |
FieldMatrix.getTrace()
Returns the trace of the matrix (the sum of the elements on the main diagonal). |
static SymmetricMatrix |
SymmetricMatrix.newByCopy(SymmetricMatrix.SYMMETRIC uplo,
int n,
int ld,
SymmetricMatrix.SYMMETRIC uploMat,
RealMatrix mat)
Create a symmetric matrix by copy of a triangle of a matrix. |
static SymmetricMatrix |
SymmetricMatrix.newByCopyOfPackedStorage(SymmetricMatrix.SYMMETRIC uplo,
int n,
int ld,
double[] d)
Creates a symmetric matrix using one of the triangles stored in 'packed' storage. |
RealMatrix |
AbstractRealMatrix.power(int p)
Returns the result of multiplying this with itself p
times. |
FieldMatrix<T> |
AbstractFieldMatrix.power(int p)
Returns the result multiplying this with itself p times. |
RealMatrix |
RealMatrix.power(int p)
Returns the result of multiplying this with itself p
times. |
FieldMatrix<T> |
FieldMatrix.power(int p)
Returns the result multiplying this with itself p times. |
static void |
MatrixUtils.solveLowerTriangularSystem(RealMatrix rm,
RealVector b)
Solve a system of composed of a Lower Triangular Matrix RealMatrix. |
static void |
MatrixUtils.solveUpperTriangularSystem(RealMatrix rm,
RealVector b)
Solver a system composed of an Upper Triangular Matrix RealMatrix. |
| Constructors in org.apache.commons.math3.linear that throw NonSquareMatrixException | |
|---|---|
SymmetricMatrix(SymmetricMatrix.SYMMETRIC uplo,
int n,
int ld,
double[] d)
Creates a matrix given the supplied dimensions and data array. |
|
SymmetricMatrix(SymmetricMatrix.SYMMETRIC uplo,
int n,
int ld,
double[][] d)
Creates a matrix given the supplied dimensions and data array 2D. |
|
SymmetricMatrix(SymmetricMatrix.SYMMETRIC uplo,
int n,
int ld,
RealMatrix m)
Creates a symmetric matrix using a real matrix. |
|
|
||||||||||
| PREV NEXT | FRAMES NO FRAMES | |||||||||