diff options
author | Joe Hunkeler <jhunkeler@gmail.com> | 2015-08-11 16:51:37 -0400 |
---|---|---|
committer | Joe Hunkeler <jhunkeler@gmail.com> | 2015-08-11 16:51:37 -0400 |
commit | 40e5a5811c6ffce9b0974e93cdd927cbcf60c157 (patch) | |
tree | 4464880c571602d54f6ae114729bf62a89518057 /math/gsurfit/doc/gssolve.hlp | |
download | iraf-osx-40e5a5811c6ffce9b0974e93cdd927cbcf60c157.tar.gz |
Repatch (from linux) of OSX IRAF
Diffstat (limited to 'math/gsurfit/doc/gssolve.hlp')
-rw-r--r-- | math/gsurfit/doc/gssolve.hlp | 40 |
1 files changed, 40 insertions, 0 deletions
diff --git a/math/gsurfit/doc/gssolve.hlp b/math/gsurfit/doc/gssolve.hlp new file mode 100644 index 00000000..8ddf42fc --- /dev/null +++ b/math/gsurfit/doc/gssolve.hlp @@ -0,0 +1,40 @@ +.help gssolve Aug85 "Gsurfit Package" +.ih +NAME +gssolve -- solve a linear system of equations by the Cholesky method +.ih +SYNOPSIS +include <math/gsurfit.h> + +gssolve (sf, ier) + +.nf +pointer sf # surface descriptor +int ier # error code +.fi +.ih +ARGUMENTS +.ls sf +Pointer to the surface descriptor structure. +.le +.ls ier +Error code returned by the fitting routines. The options are OK, SINGULAR, +and NO_DEG_FREEDOM. If ier = SINGULAR the matrix is singular, GSSOLVE +will compute a solution to the normal equations but one or more of the +coefficients will be zero. If ier = NO_DEG_FREEDOM, too few data points +exist for a reasonable solution to be computed. GSSOLVE returns without +fitting the data. +.le +.ih +DESCRIPTION +GSSOLVE computes the Cholesky factorization of the data matrix and +solves for the coefficients +of the fitting function by forward and back substitution. An error code is +returned by GSSOLVE if it is unable to solve the normal equations as +formulated. +.ih +NOTES +.ih +SEE ALSO +gsfit, gsrefit, gsaccum, gsacpts +.endhelp |