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
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
|
# Copyright(c) 1986 Association of Universities for Research in Astronomy Inc.
include <math/curfit.h>
include "icfit.h"
include "names.h"
# IC_FERRORS -- Compute error diagnositic information.
procedure ic_ferrors$t (ic, cv, x, y, wts, npts, fd)
pointer ic # ICFIT pointer
pointer cv # Curfit pointer
PIXEL x[ARB] # Ordinates
PIXEL y[ARB] # Abscissas
PIXEL wts[ARB] # Weights
int npts # Number of data points
int fd # Output file descriptor
int i, n, deleted, ncoeffs
PIXEL chisqr, rms
pointer sp, fit, wts1, coeffs, errors
int $tcvstati()
PIXEL ic_rms$t()
begin
# Determine the number of coefficients and allocate memory.
ncoeffs = $tcvstati (cv, CVNCOEFF)
call smark (sp)
call salloc (coeffs, ncoeffs, TY_PIXEL)
call salloc (errors, ncoeffs, TY_PIXEL)
if (npts == IC_NFIT(ic)) {
# Allocate memory for the fit.
n = npts
call salloc (fit, n, TY_PIXEL)
call salloc (wts1, n, TY_PIXEL)
# Eliminate rejected points and count deleted points.
call amov$t (wts, Mem$t[wts1], n)
if (IC_NREJECT(ic) > 0) {
do i = 1, npts {
if (Memi[IC_REJPTS(ic)+i-1] == YES)
Mem$t[wts1+i-1] = 0.
}
}
deleted = 0
do i = 1, n {
if (wts[i] == 0.)
deleted = deleted + 1
}
# Get the coefficients and compute the errors.
call $tcvvector (cv, x, Mem$t[fit], n)
call $tcvcoeff (cv, Mem$t[coeffs], ncoeffs)
call $tcverrors (cv, y, Mem$t[wts1], Mem$t[fit], n, chisqr,
Mem$t[errors])
rms = ic_rms$t (x, y, Mem$t[fit], Mem$t[wts1], n)
} else {
# Allocate memory for the fit.
n = IC_NFIT(ic)
call salloc (fit, n, TY_PIXEL)
call salloc (wts1, n, TY_PIXEL)
# Eliminate rejected points and count deleted points.
call amov$t (Mem$t[IC_WTSFIT(ic)], Mem$t[wts1], n)
if (IC_NREJECT(ic) > 0) {
do i = 1, npts {
if (Memi[IC_REJPTS(ic)+i-1] == YES)
Mem$t[wts1+i-1] = 0.
}
}
deleted = 0
do i = 1, n {
if (wts[i] == 0.)
deleted = deleted + 1
}
# Get the coefficients and compute the errors.
call $tcvvector (cv, Mem$t[IC_XFIT(ic)], Mem$t[fit], n)
rms = ic_rms$t (Mem$t[IC_XFIT(ic)], Mem$t[IC_YFIT(ic)],
Mem$t[fit], Mem$t[wts1], n)
call $tcvcoeff (cv, Mem$t[coeffs], ncoeffs)
call $tcverrors (cv, Mem$t[IC_YFIT(ic)], Mem$t[wts1], Mem$t[fit],
n, chisqr, Mem$t[errors])
}
# Print the error analysis.
call fprintf (fd, "# total points = %d\nsample points = %d\n")
call pargi (npts)
call pargi (n)
call fprintf (fd, "# nrejected = %d\ndeleted = %d\n")
call pargi (IC_NREJECT(ic))
call pargi (deleted)
call fprintf (fd, "# RMS = %7.4g\n")
call parg$t (rms)
call fprintf (fd, "# square root of reduced chi square = %7.4g\n")
call parg$t (sqrt (chisqr))
# Free allocated memory.
call sfree (sp)
end
# IC_RMS -- Compute RMS of points which have not been deleted.
PIXEL procedure ic_rms$t (x, y, fit, wts, npts)
PIXEL x[ARB] # Ordinates
PIXEL y[ARB] # Abscissas
PIXEL fit[ARB] # Fit
PIXEL wts[ARB] # Weights
int npts # Number of data points
int i, n
PIXEL resid, rms
begin
rms = 0.
n = 0
do i = 1, npts {
if (wts[i] == 0.)
next
resid = y[i] - fit[i]
rms = rms + resid * resid
n = n + 1
}
if (n > 0)
rms = sqrt (rms / n)
return (rms)
end
|