blob: 52e5ca4fbf014f8b23dd82b46885461f2c8315da (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
|
.help cvreject June84 "Curfit Package"
.ih
NAME
cvreject -- reject a single data point from the data set to be fit
.ih
SYNOPSIS
cvreject (cv, x, y, weight)
.nf
pointer cv # curve descriptor
real x # x value
real y # y value
real weight # weight value
.fi
.ih
ARGUMENTS
.ls cv
Pointer to the curve descriptor structure.
.le
.ls x
X value.
.le
.ls y
Y value.
.le
.ls weight
The weight value.
.le
.ih
DESCRIPTION
CVREJECT removes an individul data point from the data set.
The non-zero basis functions for each x are calculated. The contribution
of each x to the normal equations is computed and subtracted from the
appropriate arrays and vectors.
An array of points can be removed from the fit by repeated calls to CVREJECT
followed by a single call to CVSOLVE to calculate a new set of coefficients.
.ih
NOTES
.ih
SEE ALSO
.endhelp
|