diff options
Diffstat (limited to 'sys/vops/ak/aavgs.x')
-rw-r--r-- | sys/vops/ak/aavgs.x | 16 |
1 files changed, 16 insertions, 0 deletions
diff --git a/sys/vops/ak/aavgs.x b/sys/vops/ak/aavgs.x new file mode 100644 index 00000000..2793e2e8 --- /dev/null +++ b/sys/vops/ak/aavgs.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 aavgs (a, npix, mean, sigma) + +short a[ARB] +int npix +real mean, sigma, lcut, hcut +int junk, awvgs() +data lcut /0./, hcut /0./ + +begin + junk = awvgs (a, npix, mean, sigma, lcut, hcut) +end |