Uses of Interface
org.hipparchus.linear.MatrixDecomposer
Package
Description
This package holds the main interfaces and basic building block classes
dealing with differentiation.
Kalman filter.
Kalman filter implementation for non-linear processes.
Kalman filter implementation for linear processes.
Unscented Kalman filter implementation.
Linear algebra support.
This package provides algorithms that minimize the residuals
between observations and model values.
-
Uses of MatrixDecomposer in org.hipparchus.analysis.differentiation
Modifier and TypeMethodDescriptionTaylorMap.invert
(MatrixDecomposer decomposer) Invert the instance. -
Uses of MatrixDecomposer in org.hipparchus.filtering.kalman
ModifierConstructorDescriptionprotected
AbstractKalmanFilter
(MatrixDecomposer decomposer, ProcessEstimate initialState) Simple constructor. -
Uses of MatrixDecomposer in org.hipparchus.filtering.kalman.extended
ModifierConstructorDescriptionExtendedKalmanFilter
(MatrixDecomposer decomposer, NonLinearProcess<T> process, ProcessEstimate initialState) Simple constructor. -
Uses of MatrixDecomposer in org.hipparchus.filtering.kalman.linear
ModifierConstructorDescriptionLinearKalmanFilter
(MatrixDecomposer decomposer, LinearProcess<T> process, ProcessEstimate initialState) Simple constructor. -
Uses of MatrixDecomposer in org.hipparchus.filtering.kalman.unscented
ModifierConstructorDescriptionUnscentedKalmanFilter
(MatrixDecomposer decomposer, UnscentedProcess<T> process, ProcessEstimate initialState, UnscentedTransformProvider utProvider) Simple constructor. -
Uses of MatrixDecomposer in org.hipparchus.linear
Modifier and TypeClassDescriptionclass
Matrix decomposer using Cholseky decomposition.class
Matrix decomposer using LU-decomposition.class
Matrix decomposer using QR-decomposition.class
Matrix decomposer using Singular Value Decomposition. -
Uses of MatrixDecomposer in org.hipparchus.optim.nonlinear.vector.leastsquares
Modifier and TypeMethodDescriptionGaussNewtonOptimizer.getDecomposer()
Get the matrix decomposition algorithm.SequentialGaussNewtonOptimizer.getDecomposer()
Get the matrix decomposition algorithm.Modifier and TypeMethodDescriptionGaussNewtonOptimizer.withDecomposer
(MatrixDecomposer newDecomposer) Configure the matrix decomposition algorithm.SequentialGaussNewtonOptimizer.withDecomposer
(MatrixDecomposer newDecomposer) Configure the matrix decomposition algorithm.ModifierConstructorDescriptionGaussNewtonOptimizer
(MatrixDecomposer decomposer, boolean formNormalEquations) Create a Gauss Newton optimizer that uses the given matrix decomposition algorithm to solve the normal equations.SequentialGaussNewtonOptimizer
(MatrixDecomposer decomposer, boolean formNormalEquations, LeastSquaresProblem.Evaluation evaluation) Create a sequential Gauss Newton optimizer that uses the given matrix decomposition algorithm to solve the normal equations.