Uses of Interface
org.hipparchus.linear.MatrixDecomposer
Packages that use 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
Methods in org.hipparchus.analysis.differentiation with parameters of type MatrixDecomposerModifier and TypeMethodDescriptionTaylorMap.invert
(MatrixDecomposer decomposer) Invert the instance. -
Uses of MatrixDecomposer in org.hipparchus.filtering.kalman
Constructors in org.hipparchus.filtering.kalman with parameters of type MatrixDecomposerModifierConstructorDescriptionprotected
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 MatrixDecomposerModifierConstructorDescriptionExtendedKalmanFilter
(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 MatrixDecomposerModifierConstructorDescriptionLinearKalmanFilter
(MatrixDecomposer decomposer, LinearProcess<T> process, ProcessEstimate initialState) Simple constructor. -
Uses of MatrixDecomposer in org.hipparchus.filtering.kalman.unscented
Constructors in org.hipparchus.filtering.kalman.unscented with parameters of type MatrixDecomposerModifierConstructorDescriptionUnscentedKalmanFilter
(MatrixDecomposer decomposer, UnscentedProcess<T> process, ProcessEstimate initialState, UnscentedTransformProvider utProvider) Simple constructor. -
Uses of MatrixDecomposer in org.hipparchus.linear
Classes in org.hipparchus.linear that implement MatrixDecomposerModifier 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
Methods in org.hipparchus.optim.nonlinear.vector.leastsquares that return MatrixDecomposerModifier and TypeMethodDescriptionGaussNewtonOptimizer.getDecomposer()
Get the matrix decomposition algorithm.SequentialGaussNewtonOptimizer.getDecomposer()
Get the matrix decomposition algorithm.Methods in org.hipparchus.optim.nonlinear.vector.leastsquares with parameters of type MatrixDecomposerModifier and TypeMethodDescriptionGaussNewtonOptimizer.withDecomposer
(MatrixDecomposer newDecomposer) Configure the matrix decomposition algorithm.SequentialGaussNewtonOptimizer.withDecomposer
(MatrixDecomposer newDecomposer) Configure the matrix decomposition algorithm.Constructors in org.hipparchus.optim.nonlinear.vector.leastsquares with parameters of type MatrixDecomposerModifierConstructorDescriptionGaussNewtonOptimizer
(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.