blob: 04c68bf20b655f68a5623dc33a8276f67a68e95b (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
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
|