ETS  \$Id: Doxyfile 2162 2020-02-26 14:16:09Z g2dpc $
 All Classes Files Functions Variables Pages
curfit.f
Go to the documentation of this file.
1  subroutine curfit(iopt,m,x,y,w,xb,xe,k,s,nest,n,t,c,fp,
2  * wrk,lwrk,iwrk,ier)
3  implicit none
4 c given the set of data points (x(i),y(i)) and the set of positive
5 c numbers w(i),i=1,2,...,m,subroutine curfit determines a smooth spline
6 c approximation of degree k on the interval xb <= x <= xe.
7 c if iopt=-1 curfit calculates the weighted least-squares spline
8 c according to a given set of knots.
9 c if iopt>=0 the number of knots of the spline s(x) and the position
10 c t(j),j=1,2,...,n is chosen automatically by the routine. the smooth-
11 c ness of s(x) is then achieved by minimalizing the discontinuity
12 c jumps of the k-th derivative of s(x) at the knots t(j),j=k+2,k+3,...,
13 c n-k-1. the amount of smoothness is determined by the condition that
14 c f(p)=sum((w(i)*(y(i)-s(x(i))))**2) be <= s, with s a given non-
15 c negative constant, called the smoothing factor.
16 c the fit s(x) is given in the b-spline representation (b-spline coef-
17 c ficients c(j),j=1,2,...,n-k-1) and can be evaluated by means of
18 c subroutine splev.
19 c
20 c calling sequence:
21 c call curfit(iopt,m,x,y,w,xb,xe,k,s,nest,n,t,c,fp,wrk,
22 c * lwrk,iwrk,ier)
23 c
24 c parameters:
25 c iopt : integer flag. on entry iopt must specify whether a weighted
26 c least-squares spline (iopt=-1) or a smoothing spline (iopt=
27 c 0 or 1) must be determined. if iopt=0 the routine will start
28 c with an initial set of knots t(i)=xb, t(i+k+1)=xe, i=1,2,...
29 c k+1. if iopt=1 the routine will continue with the knots
30 c found at the last call of the routine.
31 c attention: a call with iopt=1 must always be immediately
32 c preceded by another call with iopt=1 or iopt=0.
33 c unchanged on exit.
34 c m : integer. on entry m must specify the number of data points.
35 c m > k. unchanged on exit.
36 c x : real array of dimension at least (m). before entry, x(i)
37 c must be set to the i-th value of the independent variable x,
38 c for i=1,2,...,m. these values must be supplied in strictly
39 c ascending order. unchanged on exit.
40 c y : real array of dimension at least (m). before entry, y(i)
41 c must be set to the i-th value of the dependent variable y,
42 c for i=1,2,...,m. unchanged on exit.
43 c w : real array of dimension at least (m). before entry, w(i)
44 c must be set to the i-th value in the set of weights. the
45 c w(i) must be strictly positive. unchanged on exit.
46 c see also further comments.
47 c xb,xe : real values. on entry xb and xe must specify the boundaries
48 c of the approximation interval. xb<=x(1), xe>=x(m).
49 c unchanged on exit.
50 c k : integer. on entry k must specify the degree of the spline.
51 c 1<=k<=5. it is recommended to use cubic splines (k=3).
52 c the user is strongly dissuaded from choosing k even,together
53 c with a small s-value. unchanged on exit.
54 c s : real.on entry (in case iopt>=0) s must specify the smoothing
55 c factor. s >=0. unchanged on exit.
56 c for advice on the choice of s see further comments.
57 c nest : integer. on entry nest must contain an over-estimate of the
58 c total number of knots of the spline returned, to indicate
59 c the storage space available to the routine. nest >=2*k+2.
60 c in most practical situation nest=m/2 will be sufficient.
61 c always large enough is nest=m+k+1, the number of knots
62 c needed for interpolation (s=0). unchanged on exit.
63 c n : integer.
64 c unless ier =10 (in case iopt >=0), n will contain the
65 c total number of knots of the spline approximation returned.
66 c if the computation mode iopt=1 is used this value of n
67 c should be left unchanged between subsequent calls.
68 c in case iopt=-1, the value of n must be specified on entry.
69 c t : real array of dimension at least (nest).
70 c on succesful exit, this array will contain the knots of the
71 c spline,i.e. the position of the interior knots t(k+2),t(k+3)
72 c ...,t(n-k-1) as well as the position of the additional knots
73 c t(1)=t(2)=...=t(k+1)=xb and t(n-k)=...=t(n)=xe needed for
74 c the b-spline representation.
75 c if the computation mode iopt=1 is used, the values of t(1),
76 c t(2),...,t(n) should be left unchanged between subsequent
77 c calls. if the computation mode iopt=-1 is used, the values
78 c t(k+2),...,t(n-k-1) must be supplied by the user, before
79 c entry. see also the restrictions (ier=10).
80 c c : real array of dimension at least (nest).
81 c on succesful exit, this array will contain the coefficients
82 c c(1),c(2),..,c(n-k-1) in the b-spline representation of s(x)
83 c fp : real. unless ier=10, fp contains the weighted sum of
84 c squared residuals of the spline approximation returned.
85 c wrk : real array of dimension at least (m*(k+1)+nest*(7+3*k)).
86 c used as working space. if the computation mode iopt=1 is
87 c used, the values wrk(1),...,wrk(n) should be left unchanged
88 c between subsequent calls.
89 c lwrk : integer. on entry,lwrk must specify the actual dimension of
90 c the array wrk as declared in the calling (sub)program.lwrk
91 c must not be too small (see wrk). unchanged on exit.
92 c iwrk : integer array of dimension at least (nest).
93 c used as working space. if the computation mode iopt=1 is
94 c used,the values iwrk(1),...,iwrk(n) should be left unchanged
95 c between subsequent calls.
96 c ier : integer. unless the routine detects an error, ier contains a
97 c non-positive value on exit, i.e.
98 c ier=0 : normal return. the spline returned has a residual sum of
99 c squares fp such that abs(fp-s)/s <= tol with tol a relat-
100 c ive tolerance set to 0.001 by the program.
101 c ier=-1 : normal return. the spline returned is an interpolating
102 c spline (fp=0).
103 c ier=-2 : normal return. the spline returned is the weighted least-
104 c squares polynomial of degree k. in this extreme case fp
105 c gives the upper bound fp0 for the smoothing factor s.
106 c ier=1 : error. the required storage space exceeds the available
107 c storage space, as specified by the parameter nest.
108 c probably causes : nest too small. if nest is already
109 c large (say nest > m/2), it may also indicate that s is
110 c too small
111 c the approximation returned is the weighted least-squares
112 c spline according to the knots t(1),t(2),...,t(n). (n=nest)
113 c the parameter fp gives the corresponding weighted sum of
114 c squared residuals (fp>s).
115 c ier=2 : error. a theoretically impossible result was found during
116 c the iteration proces for finding a smoothing spline with
117 c fp = s. probably causes : s too small.
118 c there is an approximation returned but the corresponding
119 c weighted sum of squared residuals does not satisfy the
120 c condition abs(fp-s)/s < tol.
121 c ier=3 : error. the maximal number of iterations maxit (set to 20
122 c by the program) allowed for finding a smoothing spline
123 c with fp=s has been reached. probably causes : s too small
124 c there is an approximation returned but the corresponding
125 c weighted sum of squared residuals does not satisfy the
126 c condition abs(fp-s)/s < tol.
127 c ier=10 : error. on entry, the input data are controlled on validity
128 c the following restrictions must be satisfied.
129 c -1<=iopt<=1, 1<=k<=5, m>k, nest>2*k+2, w(i)>0,i=1,2,...,m
130 c xb<=x(1)<x(2)<...<x(m)<=xe, lwrk>=(k+1)*m+nest*(7+3*k)
131 c if iopt=-1: 2*k+2<=n<=min(nest,m+k+1)
132 c xb<t(k+2)<t(k+3)<...<t(n-k-1)<xe
133 c the schoenberg-whitney conditions, i.e. there
134 c must be a subset of data points xx(j) such that
135 c t(j) < xx(j) < t(j+k+1), j=1,2,...,n-k-1
136 c if iopt>=0: s>=0
137 c if s=0 : nest >= m+k+1
138 c if one of these conditions is found to be violated,control
139 c is immediately repassed to the calling program. in that
140 c case there is no approximation returned.
141 c
142 c further comments:
143 c by means of the parameter s, the user can control the tradeoff
144 c between closeness of fit and smoothness of fit of the approximation.
145 c if s is too large, the spline will be too smooth and signal will be
146 c lost ; if s is too small the spline will pick up too much noise. in
147 c the extreme cases the program will return an interpolating spline if
148 c s=0 and the weighted least-squares polynomial of degree k if s is
149 c very large. between these extremes, a properly chosen s will result
150 c in a good compromise between closeness of fit and smoothness of fit.
151 c to decide whether an approximation, corresponding to a certain s is
152 c satisfactory the user is highly recommended to inspect the fits
153 c graphically.
154 c recommended values for s depend on the weights w(i). if these are
155 c taken as 1/d(i) with d(i) an estimate of the standard deviation of
156 c y(i), a good s-value should be found in the range (m-sqrt(2*m),m+
157 c sqrt(2*m)). if nothing is known about the statistical error in y(i)
158 c each w(i) can be set equal to one and s determined by trial and
159 c error, taking account of the comments above. the best is then to
160 c start with a very large value of s ( to determine the least-squares
161 c polynomial and the corresponding upper bound fp0 for s) and then to
162 c progressively decrease the value of s ( say by a factor 10 in the
163 c beginning, i.e. s=fp0/10, fp0/100,...and more carefully as the
164 c approximation shows more detail) to obtain closer fits.
165 c to economize the search for a good s-value the program provides with
166 c different modes of computation. at the first call of the routine, or
167 c whenever he wants to restart with the initial set of knots the user
168 c must set iopt=0.
169 c if iopt=1 the program will continue with the set of knots found at
170 c the last call of the routine. this will save a lot of computation
171 c time if curfit is called repeatedly for different values of s.
172 c the number of knots of the spline returned and their location will
173 c depend on the value of s and on the complexity of the shape of the
174 c function underlying the data. but, if the computation mode iopt=1
175 c is used, the knots returned may also depend on the s-values at
176 c previous calls (if these were smaller). therefore, if after a number
177 c of trials with different s-values and iopt=1, the user can finally
178 c accept a fit as satisfactory, it may be worthwhile for him to call
179 c curfit once more with the selected value for s but now with iopt=0.
180 c indeed, curfit may then return an approximation of the same quality
181 c of fit but with fewer knots and therefore better if data reduction
182 c is also an important objective for the user.
183 c
184 c other subroutines required:
185 c fpback,fpbspl,fpchec,fpcurf,fpdisc,fpgivs,fpknot,fprati,fprota
186 c
187 c references:
188 c dierckx p. : an algorithm for smoothing, differentiation and integ-
189 c ration of experimental data using spline functions,
190 c j.comp.appl.maths 1 (1975) 165-184.
191 c dierckx p. : a fast algorithm for smoothing data on a rectangular
192 c grid while using spline functions, siam j.numer.anal.
193 c 19 (1982) 1286-1304.
194 c dierckx p. : an improved algorithm for curve fitting with spline
195 c functions, report tw54, dept. computer science,k.u.
196 c leuven, 1981.
197 c dierckx p. : curve and surface fitting with splines, monographs on
198 c numerical analysis, oxford university press, 1993.
199 c
200 c author:
201 c p.dierckx
202 c dept. computer science, k.u. leuven
203 c celestijnenlaan 200a, b-3001 heverlee, belgium.
204 c e-mail : Paul.Dierckx@cs.kuleuven.ac.be
205 c
206 c creation date : may 1979
207 c latest update : march 1987
208 c
209 c ..
210 c ..scalar arguments..
211  real*8 xb,xe,s,fp
212  integer iopt,m,k,nest,n,lwrk,ier
213 c ..array arguments..
214  real*8 x(m),y(m),w(m),t(nest),c(nest),wrk(lwrk)
215  integer iwrk(nest)
216 c ..local scalars..
217  real*8 tol
218  integer i,ia,ib,ifp,ig,iq,iz,j,k1,k2,lwest,maxit,nmin
219 c ..
220 c we set up the parameters tol and maxit
221  maxit = 20
222  tol = 0.1e-02
223 c before starting computations a data check is made. if the input data
224 c are invalid, control is immediately repassed to the calling program.
225  ier = 10
226  if(k.le.0 .or. k.gt.5) go to 50
227  k1 = k+1
228  k2 = k1+1
229  if(iopt.lt.(-1) .or. iopt.gt.1) go to 50
230  nmin = 2*k1
231  if(m.lt.k1 .or. nest.lt.nmin) go to 50
232  lwest = m*k1+nest*(7+3*k)
233  if(lwrk.lt.lwest) go to 50
234  if(xb.gt.x(1) .or. xe.lt.x(m) .or. w(1).le.0.) go to 50
235  do 10 i=2,m
236  if(x(i-1).ge.x(i) .or. w(i).le.0.) go to 50
237  10 continue
238  if(iopt.ge.0) go to 30
239  if(n.lt.nmin .or. n.gt.nest) go to 50
240  j = n
241  do 20 i=1,k1
242  t(i) = xb
243  t(j) = xe
244  j = j-1
245  20 continue
246  call fpchec(x,m,t,n,k,ier)
247  if(ier) 50,40,50
248  30 if(s.lt.0.) go to 50
249  if(s.eq.0. .and. nest.lt.(m+k1)) go to 50
250  ier = 0
251 c we partition the working space and determine the spline approximation.
252  40 ifp = 1
253  iz = ifp+nest
254  ia = iz+nest
255  ib = ia+nest*k1
256  ig = ib+nest*k2
257  iq = ig+nest*k2
258  call fpcurf(iopt,x,y,w,m,xb,xe,k,s,nest,tol,maxit,k1,k2,n,t,c,fp,
259  * wrk(ifp),wrk(iz),wrk(ia),wrk(ib),wrk(ig),wrk(iq),iwrk,ier)
260  50 return
261  end
subroutine fpcurf(iopt, x, y, w, m, xb, xe, k, s, nest, tol, maxit, k1, k2, n, t, c, fp, fpint, z, a, b, g, q, nrdata, ier)
Definition: fpcurf.f:1
subroutine fpchec(x, m, t, n, k, ier)
Definition: fpchec.f:1
subroutine curfit(iopt, m, x, y, w, xb, xe, k, s, nest, n, t, c, fp, wrk, lwrk, iwrk, ier)
Definition: curfit.f:1