NADCON5-ng  0.0.2
NADCON5 Next Generation Documentation
decimate.f File Reference

Go to the source code of this file.

Functions/Subroutines

program decimate
 Part of the NADCON5 NADCON5 Core Library , Extract a reduced (1 of n) dataset. More...
 
subroutine inouti (lin, lout, nlo, nlo2, nx, hrec)
 
subroutine inoutr (lin, lout, nlo, nlo2, nx, zrec)
 

Function/Subroutine Documentation

subroutine inouti (   lin,
  lout,
  nlo,
  nlo2,
  nx,
integer, dimension(*)  hrec 
)

Definition at line 104 of file decimate.f.

Referenced by decimate().

104 
105 *** extract 1 of "nx" points in a record
106 
107  implicit double precision(a-h,o-z)
108  integer hrec(*)
109 
110  read(lin) (hrec(i),i=1,nlo)
111  write(lout) (hrec(nx*i+1),i=0,nlo2-1)
112 
113  return

+ Here is the caller graph for this function:

subroutine inoutr (   lin,
  lout,
  nlo,
  nlo2,
  nx,
real*4, dimension(*)  zrec 
)

Definition at line 116 of file decimate.f.

Referenced by decimate().

116 
117 *** extract 1 of "nx" points in a record
118 
119  implicit double precision(a-h,o-z)
120  real*4 zrec(*)
121 
122  read(lin) (zrec(i),i=1,nlo)
123  write(lout) (zrec(nx*i+1),i=0,nlo2-1)
124 
125  return

+ Here is the caller graph for this function: