blob: 3ecb0fcee5c2151eb504da699cdab9e20ee10595 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
|
# Copyright(c) 1986 Association of Universities for Research in Astronomy Inc.
# ANOT -- Compute the bitwise boolean complement of a vector (generic).
procedure anotl (a, b, npix)
long a[ARB], b[ARB]
int npix, i
long notl()
begin
do i = 1, npix {
b[i] = notl (a[i])
}
end
|