Uses of Interface
org.hipparchus.linear.MatrixDecomposer
-
Packages that use MatrixDecomposer Package Description org.hipparchus.filtering.kalman Kalman filter.org.hipparchus.filtering.kalman.extended Kalman filter implementation for non-linear processes.org.hipparchus.filtering.kalman.linear Kalman filter implementation for linear processes.org.hipparchus.linear Linear algebra support.org.hipparchus.optim.nonlinear.vector.leastsquares This package provides algorithms that minimize the residuals between observations and model values. -
-
Uses of MatrixDecomposer in org.hipparchus.filtering.kalman
Constructors in org.hipparchus.filtering.kalman with parameters of type MatrixDecomposer Constructor Description AbstractKalmanFilter(MatrixDecomposer decomposer, ProcessEstimate initialState)
Simple constructor. -
Uses of MatrixDecomposer in org.hipparchus.filtering.kalman.extended
Constructors in org.hipparchus.filtering.kalman.extended with parameters of type MatrixDecomposer Constructor Description ExtendedKalmanFilter(MatrixDecomposer decomposer, NonLinearProcess<T> process, ProcessEstimate initialState)
Simple constructor. -
Uses of MatrixDecomposer in org.hipparchus.filtering.kalman.linear
Constructors in org.hipparchus.filtering.kalman.linear with parameters of type MatrixDecomposer Constructor Description LinearKalmanFilter(MatrixDecomposer decomposer, LinearProcess<T> process, ProcessEstimate initialState)
Simple constructor. -
Uses of MatrixDecomposer in org.hipparchus.linear
Classes in org.hipparchus.linear that implement MatrixDecomposer Modifier and Type Class Description class
CholeskyDecomposer
Matrix decomposer using Cholseky decomposition.class
LUDecomposer
Matrix decomposer using LU-decomposition.class
QRDecomposer
Matrix decomposer using QR-decomposition.class
SingularValueDecomposer
Matrix decomposer using Singular Value Decomposition. -
Uses of MatrixDecomposer in org.hipparchus.optim.nonlinear.vector.leastsquares
Methods in org.hipparchus.optim.nonlinear.vector.leastsquares that return MatrixDecomposer Modifier and Type Method Description protected abstract MatrixDecomposer
GaussNewtonOptimizer.Decomposition. getDecomposer()
Deprecated.Get the equivalent matrix decomposer.MatrixDecomposer
GaussNewtonOptimizer. getDecomposer()
Get the matrix decomposition algorithm.Methods in org.hipparchus.optim.nonlinear.vector.leastsquares with parameters of type MatrixDecomposer Modifier and Type Method Description GaussNewtonOptimizer
GaussNewtonOptimizer. withDecomposer(MatrixDecomposer newDecomposer)
Configure the matrix decomposition algorithm.Constructors in org.hipparchus.optim.nonlinear.vector.leastsquares with parameters of type MatrixDecomposer Constructor Description GaussNewtonOptimizer(MatrixDecomposer decomposer, boolean formNormalEquations)
Create a Gauss Newton optimizer that uses the given matrix decomposition algorithm to solve the normal equations.
-