ETS  \$Id: Doxyfile 2162 2020-02-26 14:16:09Z g2dpc $
 All Classes Files Functions Variables Pages
fporde.f
Go to the documentation of this file.
1  subroutine fporde(x,y,m,kx,ky,tx,nx,ty,ny,nummer,index,nreg)
2  implicit none
3 c subroutine fporde sorts the data points (x(i),y(i)),i=1,2,...,m
4 c according to the panel tx(l)<=x<tx(l+1),ty(k)<=y<ty(k+1), they belong
5 c to. for each panel a stack is constructed containing the numbers
6 c of data points lying inside; index(j),j=1,2,...,nreg points to the
7 c first data point in the jth panel while nummer(i),i=1,2,...,m gives
8 c the number of the next data point in the panel.
9 c ..
10 c ..scalar arguments..
11  integer m,kx,ky,nx,ny,nreg
12 c ..array arguments..
13  real*8 x(m),y(m),tx(nx),ty(ny)
14  integer nummer(m),index(nreg)
15 c ..local scalars..
16  real*8 xi,yi
17  integer i,im,k,kx1,ky1,k1,l,l1,nk1x,nk1y,num,nyy
18 c ..
19  kx1 = kx+1
20  ky1 = ky+1
21  nk1x = nx-kx1
22  nk1y = ny-ky1
23  nyy = nk1y-ky
24  do 10 i=1,nreg
25  index(i) = 0
26  10 continue
27  do 60 im=1,m
28  xi = x(im)
29  yi = y(im)
30  l = kx1
31  l1 = l+1
32  20 if(xi.lt.tx(l1) .or. l.eq.nk1x) go to 30
33  l = l1
34  l1 = l+1
35  go to 20
36  30 k = ky1
37  k1 = k+1
38  40 if(yi.lt.ty(k1) .or. k.eq.nk1y) go to 50
39  k = k1
40  k1 = k+1
41  go to 40
42  50 num = (l-kx1)*nyy+k-ky
43  nummer(im) = index(num)
44  index(num) = im
45  60 continue
46  return
47  end
48 
subroutine fporde(x, y, m, kx, ky, tx, nx, ty, ny, nummer, index, nreg)
Definition: fporde.f:1