ETS  \$Id: Doxyfile 2162 2020-02-26 14:16:09Z g2dpc $
 All Classes Files Functions Variables Pages
fpchec.f
Go to the documentation of this file.
1  subroutine fpchec(x,m,t,n,k,ier)
2  implicit none
3 c subroutine fpchec verifies the number and the position of the knots
4 c t(j),j=1,2,...,n of a spline of degree k, in relation to the number
5 c and the position of the data points x(i),i=1,2,...,m. if all of the
6 c following conditions are fulfilled, the error parameter ier is set
7 c to zero. if one of the conditions is violated ier is set to ten.
8 c 1) k+1 <= n-k-1 <= m
9 c 2) t(1) <= t(2) <= ... <= t(k+1)
10 c t(n-k) <= t(n-k+1) <= ... <= t(n)
11 c 3) t(k+1) < t(k+2) < ... < t(n-k)
12 c 4) t(k+1) <= x(i) <= t(n-k)
13 c 5) the conditions specified by schoenberg and whitney must hold
14 c for at least one subset of data points, i.e. there must be a
15 c subset of data points y(j) such that
16 c t(j) < y(j) < t(j+k+1), j=1,2,...,n-k-1
17 c ..
18 c ..scalar arguments..
19  integer m,n,k,ier
20 c ..array arguments..
21  real*8 x(m),t(n)
22 c ..local scalars..
23  integer i,j,k1,k2,l,nk1,nk2,nk3
24  real*8 tj,tl
25 c ..
26  k1 = k+1
27  k2 = k1+1
28  nk1 = n-k1
29  nk2 = nk1+1
30  ier = 10
31 c check condition no 1
32  if(nk1.lt.k1 .or. nk1.gt.m) go to 80
33 c check condition no 2
34  j = n
35  do 20 i=1,k
36  if(t(i).gt.t(i+1)) go to 80
37  if(t(j).lt.t(j-1)) go to 80
38  j = j-1
39  20 continue
40 c check condition no 3
41  do 30 i=k2,nk2
42  if(t(i).le.t(i-1)) go to 80
43  30 continue
44 c check condition no 4
45  if(x(1).lt.t(k1) .or. x(m).gt.t(nk2)) go to 80
46 c check condition no 5
47  if(x(1).ge.t(k2) .or. x(m).le.t(nk1)) go to 80
48  i = 1
49  l = k2
50  nk3 = nk1-1
51  if(nk3.lt.2) go to 70
52  do 60 j=2,nk3
53  tj = t(j)
54  l = l+1
55  tl = t(l)
56  40 i = i+1
57  if(i.ge.m) go to 80
58  if(x(i).le.tj) go to 40
59  if(x(i).ge.tl) go to 80
60  60 continue
61  70 ier = 0
62  80 return
63  end
subroutine fpchec(x, m, t, n, k, ier)
Definition: fpchec.f:1