ETS  \$Id: Doxyfile 2162 2020-02-26 14:16:09Z g2dpc $
 All Classes Files Functions Variables Pages
surfit.f
Go to the documentation of this file.
1  subroutine surfit(iopt,m,x,y,z,w,xb,xe,yb,ye,kx,ky,s,nxest,nyest,
2  * nmax,eps,nx,tx,ny,ty,c,fp,wrk1,lwrk1,wrk2,lwrk2,iwrk,kwrk,ier)
3  implicit none
4 c given the set of data points (x(i),y(i),z(i)) and the set of positive
5 c numbers w(i),i=1,...,m, subroutine surfit determines a smooth bivar-
6 c iate spline approximation s(x,y) of degrees kx and ky on the rect-
7 c angle xb <= x <= xe, yb <= y <= ye.
8 c if iopt = -1 surfit calculates the weighted least-squares spline
9 c according to a given set of knots.
10 c if iopt >= 0 the total numbers nx and ny of these knots and their
11 c position tx(j),j=1,...,nx and ty(j),j=1,...,ny are chosen automatic-
12 c ally by the routine. the smoothness of s(x,y) is then achieved by
13 c minimalizing the discontinuity jumps in the derivatives of s(x,y)
14 c across the boundaries of the subpanels (tx(i),tx(i+1))*(ty(j),ty(j+1).
15 c the amounth of smoothness is determined by the condition that f(p) =
16 c sum ((w(i)*(z(i)-s(x(i),y(i))))**2) be <= s, with s a given non-neg-
17 c ative constant, called the smoothing factor.
18 c the fit is given in the b-spline representation (b-spline coefficients
19 c c((ny-ky-1)*(i-1)+j),i=1,...,nx-kx-1;j=1,...,ny-ky-1) and can be eval-
20 c uated by means of subroutine bispev.
21 c
22 c calling sequence:
23 c call surfit(iopt,m,x,y,z,w,xb,xe,yb,ye,kx,ky,s,nxest,nyest,
24 c * nmax,eps,nx,tx,ny,ty,c,fp,wrk1,lwrk1,wrk2,lwrk2,iwrk,kwrk,ier)
25 c
26 c parameters:
27 c iopt : integer flag. on entry iopt must specify whether a weighted
28 c least-squares spline (iopt=-1) or a smoothing spline (iopt=0
29 c or 1) must be determined.
30 c if iopt=0 the routine will start with an initial set of knots
31 c tx(i)=xb,tx(i+kx+1)=xe,i=1,...,kx+1;ty(i)=yb,ty(i+ky+1)=ye,i=
32 c 1,...,ky+1. if iopt=1 the routine will continue with the set
33 c of knots found at the last call of the routine.
34 c attention: a call with iopt=1 must always be immediately pre-
35 c ceded by another call with iopt=1 or iopt=0.
36 c unchanged on exit.
37 c m : integer. on entry m must specify the number of data points.
38 c m >= (kx+1)*(ky+1). unchanged on exit.
39 c x : real array of dimension at least (m).
40 c y : real array of dimension at least (m).
41 c z : real array of dimension at least (m).
42 c before entry, x(i),y(i),z(i) must be set to the co-ordinates
43 c of the i-th data point, for i=1,...,m. the order of the data
44 c points is immaterial. unchanged on exit.
45 c w : real array of dimension at least (m). before entry, w(i) must
46 c be set to the i-th value in the set of weights. the w(i) must
47 c be strictly positive. unchanged on exit.
48 c xb,xe : real values. on entry xb,xe,yb and ye must specify the bound-
49 c yb,ye aries of the rectangular approximation domain.
50 c xb<=x(i)<=xe,yb<=y(i)<=ye,i=1,...,m. unchanged on exit.
51 c kx,ky : integer values. on entry kx and ky must specify the degrees
52 c of the spline. 1<=kx,ky<=5. it is recommended to use bicubic
53 c (kx=ky=3) splines. 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 nxest : integer. unchanged on exit.
58 c nyest : integer. unchanged on exit.
59 c on entry, nxest and nyest must specify an upper bound for the
60 c number of knots required in the x- and y-directions respect.
61 c these numbers will also determine the storage space needed by
62 c the routine. nxest >= 2*(kx+1), nyest >= 2*(ky+1).
63 c in most practical situation nxest = kx+1+sqrt(m/2), nyest =
64 c ky+1+sqrt(m/2) will be sufficient. see also further comments.
65 c nmax : integer. on entry nmax must specify the actual dimension of
66 c the arrays tx and ty. nmax >= nxest, nmax >=nyest.
67 c unchanged on exit.
68 c eps : real.
69 c on entry, eps must specify a threshold for determining the
70 c effective rank of an over-determined linear system of equat-
71 c ions. 0 < eps < 1. if the number of decimal digits in the
72 c computer representation of a real number is q, then 10**(-q)
73 c is a suitable value for eps in most practical applications.
74 c unchanged on exit.
75 c nx : integer.
76 c unless ier=10 (in case iopt >=0), nx will contain the total
77 c number of knots with respect to the x-variable, of the spline
78 c approximation returned. if the computation mode iopt=1 is
79 c used, the value of nx should be left unchanged between sub-
80 c sequent calls.
81 c in case iopt=-1, the value of nx should be specified on entry
82 c tx : real array of dimension nmax.
83 c on succesful exit, this array will contain the knots of the
84 c spline with respect to the x-variable, i.e. the position of
85 c the interior knots tx(kx+2),...,tx(nx-kx-1) as well as the
86 c position of the additional knots tx(1)=...=tx(kx+1)=xb and
87 c tx(nx-kx)=...=tx(nx)=xe needed for the b-spline representat.
88 c if the computation mode iopt=1 is used, the values of tx(1),
89 c ...,tx(nx) should be left unchanged between subsequent calls.
90 c if the computation mode iopt=-1 is used, the values tx(kx+2),
91 c ...tx(nx-kx-1) must be supplied by the user, before entry.
92 c see also the restrictions (ier=10).
93 c ny : integer.
94 c unless ier=10 (in case iopt >=0), ny will contain the total
95 c number of knots with respect to the y-variable, of the spline
96 c approximation returned. if the computation mode iopt=1 is
97 c used, the value of ny should be left unchanged between sub-
98 c sequent calls.
99 c in case iopt=-1, the value of ny should be specified on entry
100 c ty : real array of dimension nmax.
101 c on succesful exit, this array will contain the knots of the
102 c spline with respect to the y-variable, i.e. the position of
103 c the interior knots ty(ky+2),...,ty(ny-ky-1) as well as the
104 c position of the additional knots ty(1)=...=ty(ky+1)=yb and
105 c ty(ny-ky)=...=ty(ny)=ye needed for the b-spline representat.
106 c if the computation mode iopt=1 is used, the values of ty(1),
107 c ...,ty(ny) should be left unchanged between subsequent calls.
108 c if the computation mode iopt=-1 is used, the values ty(ky+2),
109 c ...ty(ny-ky-1) must be supplied by the user, before entry.
110 c see also the restrictions (ier=10).
111 c c : real array of dimension at least (nxest-kx-1)*(nyest-ky-1).
112 c on succesful exit, c contains the coefficients of the spline
113 c approximation s(x,y)
114 c fp : real. unless ier=10, fp contains the weighted sum of
115 c squared residuals of the spline approximation returned.
116 c wrk1 : real array of dimension (lwrk1). used as workspace.
117 c if the computation mode iopt=1 is used the value of wrk1(1)
118 c should be left unchanged between subsequent calls.
119 c on exit wrk1(2),wrk1(3),...,wrk1(1+(nx-kx-1)*(ny-ky-1)) will
120 c contain the values d(i)/max(d(i)),i=1,...,(nx-kx-1)*(ny-ky-1)
121 c with d(i) the i-th diagonal element of the reduced triangular
122 c matrix for calculating the b-spline coefficients. it includes
123 c those elements whose square is less than eps,which are treat-
124 c ed as 0 in the case of presumed rank deficiency (ier<-2).
125 c lwrk1 : integer. on entry lwrk1 must specify the actual dimension of
126 c the array wrk1 as declared in the calling (sub)program.
127 c lwrk1 must not be too small. let
128 c u = nxest-kx-1, v = nyest-ky-1, km = max(kx,ky)+1,
129 c ne = max(nxest,nyest), bx = kx*v+ky+1, by = ky*u+kx+1,
130 c if(bx.le.by) b1 = bx, b2 = b1+v-ky
131 c if(bx.gt.by) b1 = by, b2 = b1+u-kx then
132 c lwrk1 >= u*v*(2+b1+b2)+2*(u+v+km*(m+ne)+ne-kx-ky)+b2+1
133 c wrk2 : real array of dimension (lwrk2). used as workspace, but
134 c only in the case a rank deficient system is encountered.
135 c lwrk2 : integer. on entry lwrk2 must specify the actual dimension of
136 c the array wrk2 as declared in the calling (sub)program.
137 c lwrk2 > 0 . a save upper boundfor lwrk2 = u*v*(b2+1)+b2
138 c where u,v and b2 are as above. if there are enough data
139 c points, scattered uniformly over the approximation domain
140 c and if the smoothing factor s is not too small, there is a
141 c good chance that this extra workspace is not needed. a lot
142 c of memory might therefore be saved by setting lwrk2=1.
143 c (see also ier > 10)
144 c iwrk : integer array of dimension (kwrk). used as workspace.
145 c kwrk : integer. on entry kwrk must specify the actual dimension of
146 c the array iwrk as declared in the calling (sub)program.
147 c kwrk >= m+(nxest-2*kx-1)*(nyest-2*ky-1).
148 c ier : integer. unless the routine detects an error, ier contains a
149 c non-positive value on exit, i.e.
150 c ier=0 : normal return. the spline returned has a residual sum of
151 c squares fp such that abs(fp-s)/s <= tol with tol a relat-
152 c ive tolerance set to 0.001 by the program.
153 c ier=-1 : normal return. the spline returned is an interpolating
154 c spline (fp=0).
155 c ier=-2 : normal return. the spline returned is the weighted least-
156 c squares polynomial of degrees kx and ky. in this extreme
157 c case fp gives the upper bound for the smoothing factor s.
158 c ier<-2 : warning. the coefficients of the spline returned have been
159 c computed as the minimal norm least-squares solution of a
160 c (numerically) rank deficient system. (-ier) gives the rank.
161 c especially if the rank deficiency which can be computed as
162 c (nx-kx-1)*(ny-ky-1)+ier, is large the results may be inac-
163 c curate. they could also seriously depend on the value of
164 c eps.
165 c ier=1 : error. the required storage space exceeds the available
166 c storage space, as specified by the parameters nxest and
167 c nyest.
168 c probably causes : nxest or nyest too small. if these param-
169 c eters are already large, it may also indicate that s is
170 c too small
171 c the approximation returned is the weighted least-squares
172 c spline according to the current set of knots.
173 c the parameter fp gives the corresponding weighted sum of
174 c squared residuals (fp>s).
175 c ier=2 : error. a theoretically impossible result was found during
176 c the iteration proces for finding a smoothing spline with
177 c fp = s. probably causes : s too small or badly chosen eps.
178 c there is an approximation returned but the corresponding
179 c weighted sum of squared residuals does not satisfy the
180 c condition abs(fp-s)/s < tol.
181 c ier=3 : error. the maximal number of iterations maxit (set to 20
182 c by the program) allowed for finding a smoothing spline
183 c with fp=s has been reached. probably causes : s too small
184 c there is an approximation returned but the corresponding
185 c weighted sum of squared residuals does not satisfy the
186 c condition abs(fp-s)/s < tol.
187 c ier=4 : error. no more knots can be added because the number of
188 c b-spline coefficients (nx-kx-1)*(ny-ky-1) already exceeds
189 c the number of data points m.
190 c probably causes : either s or m too small.
191 c the approximation returned is the weighted least-squares
192 c spline according to the current set of knots.
193 c the parameter fp gives the corresponding weighted sum of
194 c squared residuals (fp>s).
195 c ier=5 : error. no more knots can be added because the additional
196 c knot would (quasi) coincide with an old one.
197 c probably causes : s too small or too large a weight to an
198 c inaccurate data point.
199 c the approximation returned is the weighted least-squares
200 c spline according to the current set of knots.
201 c the parameter fp gives the corresponding weighted sum of
202 c squared residuals (fp>s).
203 c ier=10 : error. on entry, the input data are controlled on validity
204 c the following restrictions must be satisfied.
205 c -1<=iopt<=1, 1<=kx,ky<=5, m>=(kx+1)*(ky+1), nxest>=2*kx+2,
206 c nyest>=2*ky+2, 0<eps<1, nmax>=nxest, nmax>=nyest,
207 c xb<=x(i)<=xe, yb<=y(i)<=ye, w(i)>0, i=1,...,m
208 c lwrk1 >= u*v*(2+b1+b2)+2*(u+v+km*(m+ne)+ne-kx-ky)+b2+1
209 c kwrk >= m+(nxest-2*kx-1)*(nyest-2*ky-1)
210 c if iopt=-1: 2*kx+2<=nx<=nxest
211 c xb<tx(kx+2)<tx(kx+3)<...<tx(nx-kx-1)<xe
212 c 2*ky+2<=ny<=nyest
213 c yb<ty(ky+2)<ty(ky+3)<...<ty(ny-ky-1)<ye
214 c if iopt>=0: s>=0
215 c if one of these conditions is found to be violated,control
216 c is immediately repassed to the calling program. in that
217 c case there is no approximation returned.
218 c ier>10 : error. lwrk2 is too small, i.e. there is not enough work-
219 c space for computing the minimal least-squares solution of
220 c a rank deficient system of linear equations. ier gives the
221 c requested value for lwrk2. there is no approximation re-
222 c turned but, having saved the information contained in nx,
223 c ny,tx,ty,wrk1, and having adjusted the value of lwrk2 and
224 c the dimension of the array wrk2 accordingly, the user can
225 c continue at the point the program was left, by calling
226 c surfit with iopt=1.
227 c
228 c further comments:
229 c by means of the parameter s, the user can control the tradeoff
230 c between closeness of fit and smoothness of fit of the approximation.
231 c if s is too large, the spline will be too smooth and signal will be
232 c lost ; if s is too small the spline will pick up too much noise. in
233 c the extreme cases the program will return an interpolating spline if
234 c s=0 and the weighted least-squares polynomial (degrees kx,ky)if s is
235 c very large. between these extremes, a properly chosen s will result
236 c in a good compromise between closeness of fit and smoothness of fit.
237 c to decide whether an approximation, corresponding to a certain s is
238 c satisfactory the user is highly recommended to inspect the fits
239 c graphically.
240 c recommended values for s depend on the weights w(i). if these are
241 c taken as 1/d(i) with d(i) an estimate of the standard deviation of
242 c z(i), a good s-value should be found in the range (m-sqrt(2*m),m+
243 c sqrt(2*m)). if nothing is known about the statistical error in z(i)
244 c each w(i) can be set equal to one and s determined by trial and
245 c error, taking account of the comments above. the best is then to
246 c start with a very large value of s ( to determine the least-squares
247 c polynomial and the corresponding upper bound fp0 for s) and then to
248 c progressively decrease the value of s ( say by a factor 10 in the
249 c beginning, i.e. s=fp0/10, fp0/100,...and more carefully as the
250 c approximation shows more detail) to obtain closer fits.
251 c to choose s very small is strongly discouraged. this considerably
252 c increases computation time and memory requirements. it may also
253 c cause rank-deficiency (ier<-2) and endager numerical stability.
254 c to economize the search for a good s-value the program provides with
255 c different modes of computation. at the first call of the routine, or
256 c whenever he wants to restart with the initial set of knots the user
257 c must set iopt=0.
258 c if iopt=1 the program will continue with the set of knots found at
259 c the last call of the routine. this will save a lot of computation
260 c time if surfit is called repeatedly for different values of s.
261 c the number of knots of the spline returned and their location will
262 c depend on the value of s and on the complexity of the shape of the
263 c function underlying the data. if the computation mode iopt=1
264 c is used, the knots returned may also depend on the s-values at
265 c previous calls (if these were smaller). therefore, if after a number
266 c of trials with different s-values and iopt=1, the user can finally
267 c accept a fit as satisfactory, it may be worthwhile for him to call
268 c surfit once more with the selected value for s but now with iopt=0.
269 c indeed, surfit may then return an approximation of the same quality
270 c of fit but with fewer knots and therefore better if data reduction
271 c is also an important objective for the user.
272 c the number of knots may also depend on the upper bounds nxest and
273 c nyest. indeed, if at a certain stage in surfit the number of knots
274 c in one direction (say nx) has reached the value of its upper bound
275 c (nxest), then from that moment on all subsequent knots are added
276 c in the other (y) direction. this may indicate that the value of
277 c nxest is too small. on the other hand, it gives the user the option
278 c of limiting the number of knots the routine locates in any direction
279 c for example, by setting nxest=2*kx+2 (the lowest allowable value for
280 c nxest), the user can indicate that he wants an approximation which
281 c is a simple polynomial of degree kx in the variable x.
282 c
283 c other subroutines required:
284 c fpback,fpbspl,fpsurf,fpdisc,fpgivs,fprank,fprati,fprota,fporde
285 c
286 c references:
287 c dierckx p. : an algorithm for surface fitting with spline functions
288 c ima j. numer. anal. 1 (1981) 267-283.
289 c dierckx p. : an algorithm for surface fitting with spline functions
290 c report tw50, dept. computer science,k.u.leuven, 1980.
291 c dierckx p. : curve and surface fitting with splines, monographs on
292 c numerical analysis, oxford university press, 1993.
293 c
294 c author:
295 c p.dierckx
296 c dept. computer science, k.u. leuven
297 c celestijnenlaan 200a, b-3001 heverlee, belgium.
298 c e-mail : Paul.Dierckx@cs.kuleuven.ac.be
299 c
300 c creation date : may 1979
301 c latest update : march 1987
302 c
303 c ..
304 c ..scalar arguments..
305  real*8 xb,xe,yb,ye,s,eps,fp
306  integer iopt,m,kx,ky,nxest,nyest,nmax,nx,ny,lwrk1,lwrk2,kwrk,ier
307 c ..array arguments..
308  real*8 x(m),y(m),z(m),w(m),tx(nmax),ty(nmax),
309  * c((nxest-kx-1)*(nyest-ky-1)),wrk1(lwrk1),wrk2(lwrk2)
310  integer iwrk(kwrk)
311 c ..local scalars..
312  real*8 tol
313  integer i,ib1,ib3,jb1,ki,kmax,km1,km2,kn,kwest,kx1,ky1,la,lbx,
314  * lby,lco,lf,lff,lfp,lh,lq,lsx,lsy,lwest,maxit,ncest,nest,nek,
315  * nminx,nminy,nmx,nmy,nreg,nrint,nxk,nyk
316 c ..function references..
317  integer max0
318 c ..subroutine references..
319 c fpsurf
320 c ..
321 c we set up the parameters tol and maxit.
322  maxit = 20
323  tol = 0.1d-02
324 c before starting computations a data check is made. if the input data
325 c are invalid,control is immediately repassed to the calling program.
326  ier = 10
327  if(eps.le.0.0d0 .or. eps.ge.1.0d0) go to 70
328  if(kx.le.0 .or. kx.gt.5) go to 70
329  kx1 = kx+1
330  if(ky.le.0 .or. ky.gt.5) go to 70
331  ky1 = ky+1
332  kmax = max0(kx,ky)
333  km1 = kmax+1
334  km2 = km1+1
335  if(iopt.lt.(-1) .or. iopt.gt.1) go to 70
336  if(m.lt.(kx1*ky1)) go to 70
337  nminx = 2*kx1
338  if(nxest.lt.nminx .or. nxest.gt.nmax) go to 70
339  nminy = 2*ky1
340  if(nyest.lt.nminy .or. nyest.gt.nmax) go to 70
341  nest = max0(nxest,nyest)
342  nxk = nxest-kx1
343  nyk = nyest-ky1
344  ncest = nxk*nyk
345  nmx = nxest-nminx+1
346  nmy = nyest-nminy+1
347  nrint = nmx+nmy
348  nreg = nmx*nmy
349  ib1 = kx*nyk+ky1
350  jb1 = ky*nxk+kx1
351  ib3 = kx1*nyk+1
352  if(ib1.le.jb1) go to 10
353  ib1 = jb1
354  ib3 = ky1*nxk+1
355  10 lwest = ncest*(2+ib1+ib3)+2*(nrint+nest*km2+m*km1)+ib3
356  kwest = m+nreg
357  if(lwrk1.lt.lwest .or. kwrk.lt.kwest) go to 70
358  if(xb.ge.xe .or. yb.ge.ye) go to 70
359  do 20 i=1,m
360  if(w(i).le.0.0d0) go to 70
361  if(x(i).lt.xb .or. x(i).gt.xe) go to 70
362  if(y(i).lt.yb .or. y(i).gt.ye) go to 70
363  20 continue
364  if(iopt.ge.0) go to 50
365  if(nx.lt.nminx .or. nx.gt.nxest) go to 70
366  nxk = nx-kx1
367  tx(kx1) = xb
368  tx(nxk+1) = xe
369  do 30 i=kx1,nxk
370  if(tx(i+1).le.tx(i)) go to 70
371  30 continue
372  if(ny.lt.nminy .or. ny.gt.nyest) go to 70
373  nyk = ny-ky1
374  ty(ky1) = yb
375  ty(nyk+1) = ye
376  do 40 i=ky1,nyk
377  if(ty(i+1).le.ty(i)) go to 70
378  40 continue
379  go to 60
380  50 if(s.lt.0.) go to 70
381  60 ier = 0
382 c we partition the working space and determine the spline approximation
383  kn = 1
384  ki = kn+m
385  lq = 2
386  la = lq+ncest*ib3
387  lf = la+ncest*ib1
388  lff = lf+ncest
389  lfp = lff+ncest
390  lco = lfp+nrint
391  lh = lco+nrint
392  lbx = lh+ib3
393  nek = nest*km2
394  lby = lbx+nek
395  lsx = lby+nek
396  lsy = lsx+m*km1
397  call fpsurf(iopt,m,x,y,z,w,xb,xe,yb,ye,kx,ky,s,nxest,nyest,
398  * eps,tol,maxit,nest,km1,km2,ib1,ib3,ncest,nrint,nreg,nx,tx,
399  * ny,ty,c,fp,wrk1(1),wrk1(lfp),wrk1(lco),wrk1(lf),wrk1(lff),
400  * wrk1(la),wrk1(lq),wrk1(lbx),wrk1(lby),wrk1(lsx),wrk1(lsy),
401  * wrk1(lh),iwrk(ki),iwrk(kn),wrk2,lwrk2,ier)
402  70 return
403  end
subroutine fpsurf(iopt, m, x, y, z, w, xb, xe, yb, ye, kxx, kyy, s, nxest, nyest, eta, tol, maxit, nmax, km1, km2, ib1, ib3, nc, intest, nrest, nx0, tx, ny0, ty, c, fp, fp0, fpint, coord, f, ff, a, q, bx, by, spx, spy, h, index, nummer, wrk, lwrk, ier)
Definition: fpsurf.f:1
subroutine surfit(iopt, m, x, y, z, w, xb, xe, yb, ye, kx, ky, s, nxest, nyest, nmax, eps, nx, tx, ny, ty, c, fp, wrk1, lwrk1, wrk2, lwrk2, iwrk, kwrk, ier)
Definition: surfit.f:1