public class AbstractCurveFitter.FitMeasurement extends WeightedMeasurement
y = f
(x) is the value of the function at x abscissa. This class
is an inner class because the methods related to the computation
of f values and derivative are proveded by the fitter
implementations.| Modifier and Type | Field and Description |
|---|---|
double |
x
Abscissa of the measurement.
|
| Constructor and Description |
|---|
FitMeasurement(double weight,
double x,
double y)
Simple constructor.
|
| Modifier and Type | Method and Description |
|---|---|
double |
getPartial(EstimatedParameter p)
Partial derivative with respect to one function coefficient.
|
double |
getTheoreticalValue()
Get the value of the fitted function at x.
|
getMeasuredValue, getResidual, getWeight, isIgnored, setIgnoredpublic FitMeasurement(double weight,
double x,
double y)
weight - weight of the measurement in the fitting processx - abscissa of the measurementy - ordinate of the measurementpublic double getTheoreticalValue()
getTheoreticalValue in class WeightedMeasurementpublic double getPartial(EstimatedParameter p)
getPartial in class WeightedMeasurementp - parameter with respect to which the derivative is requestedCopyright © 2001-2007 Luc Maisonobe. All Rights Reserved.