Uses of Interface
org.apache.commons.math3.fitting.leastsquares.ParameterValidator
-
Packages that use ParameterValidator Package Description org.apache.commons.math3.fitting.leastsquares This package provides algorithms that minimize the residuals between observations and model values. -
-
Uses of ParameterValidator in org.apache.commons.math3.fitting.leastsquares
Fields in org.apache.commons.math3.fitting.leastsquares declared as ParameterValidator Modifier and Type Field Description private ParameterValidatorLeastSquaresBuilder. paramValidatorValidator.private ParameterValidatorLeastSquaresFactory.LocalLeastSquaresProblem. paramValidatorModel parameters validator.Methods in org.apache.commons.math3.fitting.leastsquares with parameters of type ParameterValidator Modifier and Type Method Description static LeastSquaresProblemLeastSquaresFactory. create(MultivariateJacobianFunction model, RealVector observed, RealVector start, RealMatrix weight, ConvergenceChecker<LeastSquaresProblem.Evaluation> checker, int maxEvaluations, int maxIterations, boolean lazyEvaluation, ParameterValidator paramValidator)Create aLeastSquaresProblemfrom the given elements.LeastSquaresBuilderLeastSquaresBuilder. parameterValidator(ParameterValidator newValidator)Configure the validator of the model parameters.Constructors in org.apache.commons.math3.fitting.leastsquares with parameters of type ParameterValidator Constructor Description LocalLeastSquaresProblem(MultivariateJacobianFunction model, RealVector target, RealVector start, ConvergenceChecker<LeastSquaresProblem.Evaluation> checker, int maxEvaluations, int maxIterations, boolean lazyEvaluation, ParameterValidator paramValidator)Create aLeastSquaresProblemfrom the given data.
-