diff options
Diffstat (limited to 'sys/vops/ak/aavgd.x')
-rw-r--r-- | sys/vops/ak/aavgd.x | 16 |
1 files changed, 16 insertions, 0 deletions
diff --git a/sys/vops/ak/aavgd.x b/sys/vops/ak/aavgd.x new file mode 100644 index 00000000..04c68bf2 --- /dev/null +++ b/sys/vops/ak/aavgd.x @@ -0,0 +1,16 @@ +# Copyright(c) 1986 Association of Universities for Research in Astronomy Inc. + +# AAVG -- Compute the mean and standard deviation (sigma) of a sample. +# All pixels are used. + +procedure aavgd (a, npix, mean, sigma) + +double a[ARB] +int npix +double mean, sigma, lcut, hcut +int junk, awvgd() +data lcut /0./, hcut /0./ + +begin + junk = awvgd (a, npix, mean, sigma, lcut, hcut) +end |