blob: 98308cc32e5e919e2a689308b3c1a51756be8413 (
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
42
43
|
.help nlvector Feb91 "Nlfit Package"
.ih
NAME
nlvector -- evaluate the fitted curve at a set of points
.ih
SYNOPSIS
nlvector[rd] (nl, x, zfit, npts, nvars)
.nf
pointer nl # curve descriptor
real/double x[nvars*npts] # array of variables stored as x[nvars,npts]
real/double zfit[npts] # array of fitted function values
int npts # number of data points
int nvars # number of variables
.fi
.ih
ARGUMENTS
.ls nl
Pointer to the curve descriptor structure.
.le
.ls x
Array of variable values for all the data points.
.le
.ls zfit
Array of fitted function values.
.le
.ls npts
The number of data points at which the curve is to be evaluated.
.le
.ls nvars
The number of variables in the fitted function.
.le
.ih
DESCRIPTION
Fit the curve to an array of data points.
.ih
NOTES
NLVECTOR uses the coefficient array stored in the curfit descriptor
structure.
.ih
SEE ALSO
nleval
.endhelp
|