Java org.apache.commons.math3.fitting.leastsquares LeastSquaresFactory fields, constructors, methods, implement or subclass

Example usage for Java org.apache.commons.math3.fitting.leastsquares LeastSquaresFactory fields, constructors, methods, implement or subclass

Introduction

In this page you can find the methods, fields and constructors for org.apache.commons.math3.fitting.leastsquares LeastSquaresFactory.

The text is from its open source code.

Method

LeastSquaresProblemcreate(final MultivariateJacobianFunction model, final RealVector observed, final RealVector start, final RealMatrix weight, final ConvergenceChecker checker, final int maxEvaluations, final int maxIterations)
Create a org.apache.commons.math3.fitting.leastsquares.LeastSquaresProblem from the given elements.
LeastSquaresProblemcreate(final MultivariateJacobianFunction model, final RealVector observed, final RealVector start, final ConvergenceChecker checker, final int maxEvaluations, final int maxIterations)
Create a org.apache.commons.math3.fitting.leastsquares.LeastSquaresProblem from the given elements.
ConvergenceCheckerevaluationChecker( final ConvergenceChecker checker)
View a convergence checker specified for a PointVectorValuePair as one specified for an Evaluation .
MultivariateJacobianFunctionmodel(final MultivariateVectorFunction value, final MultivariateMatrixFunction jacobian)
Combine a MultivariateVectorFunction with a MultivariateMatrixFunction to produce a MultivariateJacobianFunction .