Uses of Enum
org.apache.commons.math3.fitting.leastsquares.GaussNewtonOptimizer.Decomposition
Packages that use GaussNewtonOptimizer.Decomposition
Package
Description
This package provides algorithms that minimize the residuals
between observations and model values.
-
Uses of GaussNewtonOptimizer.Decomposition in org.apache.commons.math3.fitting.leastsquares
Subclasses with type arguments of type GaussNewtonOptimizer.Decomposition in org.apache.commons.math3.fitting.leastsquaresModifier and TypeClassDescriptionstatic enumThe decomposition algorithm to use to solve the normal equations.Fields in org.apache.commons.math3.fitting.leastsquares declared as GaussNewtonOptimizer.DecompositionModifier and TypeFieldDescriptionprivate final GaussNewtonOptimizer.DecompositionGaussNewtonOptimizer.decompositionIndicator for using LU decomposition.Methods in org.apache.commons.math3.fitting.leastsquares that return GaussNewtonOptimizer.DecompositionModifier and TypeMethodDescriptionGaussNewtonOptimizer.getDecomposition()Get the matrix decomposition algorithm used to solve the normal equations.Returns the enum constant of this type with the specified name.static GaussNewtonOptimizer.Decomposition[]GaussNewtonOptimizer.Decomposition.values()Returns an array containing the constants of this enum type, in the order they are declared.Methods in org.apache.commons.math3.fitting.leastsquares with parameters of type GaussNewtonOptimizer.DecompositionModifier and TypeMethodDescriptionGaussNewtonOptimizer.withDecomposition(GaussNewtonOptimizer.Decomposition newDecomposition) Configure the decomposition algorithm.Constructors in org.apache.commons.math3.fitting.leastsquares with parameters of type GaussNewtonOptimizer.DecompositionModifierConstructorDescriptionGaussNewtonOptimizer(GaussNewtonOptimizer.Decomposition decomposition) Create a Gauss Newton optimizer that uses the given decomposition algorithm to solve the normal equations.