ETS  \$Id: Doxyfile 2162 2020-02-26 14:16:09Z g2dpc $
 All Classes Files Functions Variables Pages
bispev.f
Go to the documentation of this file.
1  subroutine bispev(tx,nx,ty,ny,c,kx,ky,x,mx,y,my,z,wrk,lwrk,
2  * iwrk,kwrk,ier)
3  implicit none
4 c subroutine bispev evaluates on a grid (x(i),y(j)),i=1,...,mx; j=1,...
5 c ,my a bivariate spline s(x,y) of degrees kx and ky, given in the
6 c b-spline representation.
7 c
8 c calling sequence:
9 c call bispev(tx,nx,ty,ny,c,kx,ky,x,mx,y,my,z,wrk,lwrk,
10 c * iwrk,kwrk,ier)
11 c
12 c input parameters:
13 c tx : real array, length nx, which contains the position of the
14 c knots in the x-direction.
15 c nx : integer, giving the total number of knots in the x-direction
16 c ty : real array, length ny, which contains the position of the
17 c knots in the y-direction.
18 c ny : integer, giving the total number of knots in the y-direction
19 c c : real array, length (nx-kx-1)*(ny-ky-1), which contains the
20 c b-spline coefficients.
21 c kx,ky : integer values, giving the degrees of the spline.
22 c x : real array of dimension (mx).
23 c before entry x(i) must be set to the x co-ordinate of the
24 c i-th grid point along the x-axis.
25 c tx(kx+1)<=x(i-1)<=x(i)<=tx(nx-kx), i=2,...,mx.
26 c mx : on entry mx must specify the number of grid points along
27 c the x-axis. mx >=1.
28 c y : real array of dimension (my).
29 c before entry y(j) must be set to the y co-ordinate of the
30 c j-th grid point along the y-axis.
31 c ty(ky+1)<=y(j-1)<=y(j)<=ty(ny-ky), j=2,...,my.
32 c my : on entry my must specify the number of grid points along
33 c the y-axis. my >=1.
34 c wrk : real array of dimension lwrk. used as workspace.
35 c lwrk : integer, specifying the dimension of wrk.
36 c lwrk >= mx*(kx+1)+my*(ky+1)
37 c iwrk : integer array of dimension kwrk. used as workspace.
38 c kwrk : integer, specifying the dimension of iwrk. kwrk >= mx+my.
39 c
40 c output parameters:
41 c z : real array of dimension (mx*my).
42 c on succesful exit z(my*(i-1)+j) contains the value of s(x,y)
43 c at the point (x(i),y(j)),i=1,...,mx;j=1,...,my.
44 c ier : integer error flag
45 c ier=0 : normal return
46 c ier=10: invalid input data (see restrictions)
47 c
48 c restrictions:
49 c mx >=1, my >=1, lwrk>=mx*(kx+1)+my*(ky+1), kwrk>=mx+my
50 c tx(kx+1) <= x(i-1) <= x(i) <= tx(nx-kx), i=2,...,mx
51 c ty(ky+1) <= y(j-1) <= y(j) <= ty(ny-ky), j=2,...,my
52 c
53 c other subroutines required:
54 c fpbisp,fpbspl
55 c
56 c references :
57 c de boor c : on calculating with b-splines, j. approximation theory
58 c 6 (1972) 50-62.
59 c cox m.g. : the numerical evaluation of b-splines, j. inst. maths
60 c applics 10 (1972) 134-149.
61 c dierckx p. : curve and surface fitting with splines, monographs on
62 c numerical analysis, oxford university press, 1993.
63 c
64 c author :
65 c p.dierckx
66 c dept. computer science, k.u.leuven
67 c celestijnenlaan 200a, b-3001 heverlee, belgium.
68 c e-mail : Paul.Dierckx@cs.kuleuven.ac.be
69 c
70 c latest update : march 1987
71 c
72 c ..scalar arguments..
73  integer nx,ny,kx,ky,mx,my,lwrk,kwrk,ier
74 c ..array arguments..
75  integer iwrk(kwrk)
76  real*8 tx(nx),ty(ny),c((nx-kx-1)*(ny-ky-1)),x(mx),y(my),z(mx*my),
77  * wrk(lwrk)
78 c ..local scalars..
79  integer i,iw,lwest
80 c ..
81 c before starting computations a data check is made. if the input data
82 c are invalid control is immediately repassed to the calling program.
83 C write(6,*) "x, nx = ", x(1),mx, " y, ny = ", y(1), my
84  ier = 10
85  lwest = (kx+1)*mx+(ky+1)*my
86  if(lwrk.lt.lwest) go to 100
87  if(kwrk.lt.(mx+my)) go to 100
88  if(mx-1) 100,30,10
89  10 do 20 i=2,mx
90  if(x(i).lt.x(i-1)) go to 100
91  20 continue
92  30 if(my-1) 100,60,40
93  40 do 50 i=2,my
94  if(y(i).lt.y(i-1)) go to 100
95  50 continue
96  60 ier = 0
97  iw = mx*(kx+1)+1
98 C write(6,*) tx, nx, ty, ny, c, kx, ky, x, mx, y, my
99 C write(6,*) "WRK = ", wrk(1), wrk(iw)
100  call fpbisp(tx,nx,ty,ny,c,kx,ky,x,mx,y,my,z,wrk(1),wrk(iw),
101  * iwrk(1),iwrk(mx+1))
102 C write(6,*) "x,y = ", x(1), y(1)
103 C write(6,*) "flux = ",z(1)
104  100 return
105  end
subroutine bispev(tx, nx, ty, ny, c, kx, ky, x, mx, y, my, z, wrk, lwrk, iwrk, kwrk, ier)
Definition: bispev.f:1
subroutine fpbisp(tx, nx, ty, ny, c, kx, ky, x, mx, y, my, z, wx, wy, lx, ly)
Definition: fpbisp.f:1