Uses of Class
org.apache.commons.math.estimation.EstimationException

Packages that use EstimationException
org.apache.commons.math.estimation This package provides classes to solve estimation problems. 
 

Uses of EstimationException in org.apache.commons.math.estimation
 

Methods in org.apache.commons.math.estimation that throw EstimationException
 void Estimator.estimate(EstimationProblem problem)
          Solve an estimation problem.
 void GaussNewtonEstimator.estimate(EstimationProblem problem)
          Solve an estimation problem using a least squares criterion.
abstract  void AbstractEstimator.estimate(EstimationProblem problem)
          Solve an estimation problem.
 void LevenbergMarquardtEstimator.estimate(EstimationProblem problem)
          Solve an estimation problem using the Levenberg-Marquardt algorithm.
 double[][] Estimator.getCovariances(EstimationProblem problem)
          Get the covariance matrix of estimated parameters.
 double[][] AbstractEstimator.getCovariances(EstimationProblem problem)
          Get the covariance matrix of estimated parameters.
 double[] Estimator.guessParametersErrors(EstimationProblem problem)
          Guess the errors in estimated parameters.
 double[] AbstractEstimator.guessParametersErrors(EstimationProblem problem)
          Guess the errors in estimated parameters.
protected  void AbstractEstimator.updateResidualsAndCost()
          Update the residuals array and cost function value.