MATH-1111

Javadoc.


git-svn-id: https://svn.apache.org/repos/asf/commons/proper/math/trunk@1579343 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
Gilles Sadowski 2014-03-19 18:33:13 +00:00
parent c5ae09d77e
commit 7cafdb73f2
1 changed files with 4 additions and 5 deletions

View File

@ -17,11 +17,10 @@
/**
* Classes to perform curve fitting.
*
* Curve fitting is a special case of a least squares problem
* were the parameters are the coefficients of a function {@code f}
* whose graph {@code y = f(x)} should pass through sample points, and
* Curve fitting is a special case of a least-squares problem
* where the parameters are the coefficients of a function \( f \)
* whose graph \( y = f(x) \) should pass through sample points, and
* were the objective function is the squared sum of the residuals
* <code>f(x<sub>i</sub>) - y<sub>i</sub></code> for observed points
* <code>(x<sub>i</sub>, y<sub>i</sub>)</code>.
* \( f(x_i) - y_i \) for observed points \( (x_i, y_i) \).
*/
package org.apache.commons.math3.fitting;