ETS  \$Id: Doxyfile 2162 2020-02-26 14:16:09Z g2dpc $
 All Classes Files Functions Variables Pages
fpknot.f
Go to the documentation of this file.
1  subroutine fpknot(x,m,t,n,fpint,nrdata,nrint,nest,istart)
2  implicit none
3 c subroutine fpknot locates an additional knot for a spline of degree
4 c k and adjusts the corresponding parameters,i.e.
5 c t : the position of the knots.
6 c n : the number of knots.
7 c nrint : the number of knotintervals.
8 c fpint : the sum of squares of residual right hand sides
9 c for each knot interval.
10 c nrdata: the number of data points inside each knot interval.
11 c istart indicates that the smallest data point at which the new knot
12 c may be added is x(istart+1)
13 c ..
14 c ..scalar arguments..
15  integer m,n,nrint,nest,istart
16 c ..array arguments..
17  real*8 x(m),t(nest),fpint(nest)
18  integer nrdata(nest)
19 c ..local scalars..
20  real*8 an,am,fpmax
21  integer ihalf,j,jbegin,jj,jk,jpoint,k,maxbeg,maxpt,
22  * next,nrx,number
23 c ..
24  k = (n-nrint-1)/2
25 c search for knot interval t(number+k) <= x <= t(number+k+1) where
26 c fpint(number) is maximal on the condition that nrdata(number)
27 c not equals zero.
28  fpmax = 0.
29  jbegin = istart
30  do 20 j=1,nrint
31  jpoint = nrdata(j)
32  if(fpmax.ge.fpint(j) .or. jpoint.eq.0) go to 10
33  fpmax = fpint(j)
34  number = j
35  maxpt = jpoint
36  maxbeg = jbegin
37  10 jbegin = jbegin+jpoint+1
38  20 continue
39 c let coincide the new knot t(number+k+1) with a data point x(nrx)
40 c inside the old knot interval t(number+k) <= x <= t(number+k+1).
41  ihalf = maxpt/2+1
42  nrx = maxbeg+ihalf
43  next = number+1
44  if(next.gt.nrint) go to 40
45 c adjust the different parameters.
46  do 30 j=next,nrint
47  jj = next+nrint-j
48  fpint(jj+1) = fpint(jj)
49  nrdata(jj+1) = nrdata(jj)
50  jk = jj+k
51  t(jk+1) = t(jk)
52  30 continue
53  40 nrdata(number) = ihalf-1
54  nrdata(next) = maxpt-ihalf
55  am = maxpt
56  an = nrdata(number)
57  fpint(number) = fpmax*an/am
58  an = nrdata(next)
59  fpint(next) = fpmax*an/am
60  jk = next+k
61  t(jk) = x(nrx)
62  n = n+1
63  nrint = nrint+1
64  return
65  end
subroutine fpknot(x, m, t, n, fpint, nrdata, nrint, nest, istart)
Definition: fpknot.f:1