Home | History | Annotate | Download | only in fitting

Lines Matching full:observed

35  * observed points (x<sub>0</sub>, y<sub>0</sub>), (x<sub>1</sub>,
48 /** Observed points. */
59 /** Add an observed (x,y) point to the sample with unit weight.
63 * @param y observed value of the point at x, after fitting we should
73 /** Add an observed weighted (x,y) point to the sample.
74 * @param weight weight of the observed point in the fit
76 * @param y observed value of the point at x, after fitting we should
86 /** Add an observed weighted (x,y) point to the sample.
87 * @param observed observed point to add
92 public void addObservedPoint(WeightedObservedPoint observed) {
93 observations.add(observed);
96 /** Get the observed points.
97 * @return observed points
115 * fit the sample of observed points previously given through calls
171 for (WeightedObservedPoint observed : observations) {
172 jacobian[i++] = f.gradient(observed.getX(), point);
187 for (WeightedObservedPoint observed : observations) {
188 values[i++] = f.value(observed.getX(), point);