blob: 4c95263653987c49a032cc17402e409cc32d9344 (
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 anots (a, b, npix)
short a[ARB], b[ARB]
int npix, i
short nots()
begin
do i = 1, npix {
b[i] = nots (a[i])
}
end
|