blob: 16badae2f454dd6e81fe60dcc4d5bd8789e8b102 (
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
|
.help cvsolve Jun84 "Curfit Package"
.ih
NAME
cvsolve -- solve a linear system of eqns by the Cholesky method
.ih
SYNOPSIS
cvsolve (cv, ier)
.nf
pointer cv # curve descriptor
int ier # error code
.fi
.ih
ARGUMENTS
.ls cv
Pointer to the curve descriptor
.le
.ls ier
Error code returned by the fitting routines. The options are
OK, SINGULAR and NO_DEG_FREEDOM. If ier is SINGULAR the matrix is singular,
CVSOLVE will compute a solution to the normal equationsbut one or more of the
coefficients will be zero.
If ier equals NO_DEG_FREEDOM, too few data points exist for a reasonable
solution to be computed. CVSOLVE returns
without fitting the data.
.le
.ih
DESCRIPTION
CVSOLVE call two routines CVCHOFAC and CVCHOSLV. CVCHOFAC computes the
Cholesky factorization of the data matrix. CVCHOSLV solves for the
coefficients of the fitting function by forward and back substitution.
An error code is returned by CVSOLVE if it is unable to solve the normal
equations as formulated.
.ih
NOTES
.ih
SEE ALSO
cvchofac, cvchoslv
.endhelp
|