diff options
author | Joseph Hunkeler <jhunkeler@gmail.com> | 2015-07-08 20:46:52 -0400 |
---|---|---|
committer | Joseph Hunkeler <jhunkeler@gmail.com> | 2015-07-08 20:46:52 -0400 |
commit | fa080de7afc95aa1c19a6e6fc0e0708ced2eadc4 (patch) | |
tree | bdda434976bc09c864f2e4fa6f16ba1952b1e555 /pkg/xtools/inlfit/ingvshowd.x | |
download | iraf-linux-fa080de7afc95aa1c19a6e6fc0e0708ced2eadc4.tar.gz |
Initial commit
Diffstat (limited to 'pkg/xtools/inlfit/ingvshowd.x')
-rw-r--r-- | pkg/xtools/inlfit/ingvshowd.x | 34 |
1 files changed, 34 insertions, 0 deletions
diff --git a/pkg/xtools/inlfit/ingvshowd.x b/pkg/xtools/inlfit/ingvshowd.x new file mode 100644 index 00000000..e7a2af30 --- /dev/null +++ b/pkg/xtools/inlfit/ingvshowd.x @@ -0,0 +1,34 @@ +include <pkg/inlfit.h> + + +# ING_VSHOW -- Show fit parameters in verbose mode on the screen. + +procedure ing_vshowd (in, file, nl, x, y, wts, names, npts, nvars, len_name, + gt) + +pointer in # INLFIT pointer +char file[ARB] # Output file name +pointer nl # NLFIT pointer +double x[ARB] # Ordinates (npts * nvars) +double y[ARB] # Abscissas +double wts[ARB] # Weights +char names[ARB] # Object ids +int npts # Number of data points +int nvars # Number of variables +int len_name # Length of id name +pointer gt # Graphics tools pointer + +begin + # Print the title. + call ing_title (in, file, gt) + + # Do the standard ing_show option. + call ing_showd (in, file) + + # Print the error analysis information. + call ing_errorsd (in, file, nl, x, y, wts, npts, nvars) + + # Print the results. + call ing_resultsd (in, file, nl, x, y, wts, names, npts, nvars, + len_name) +end |