blob: 995b3c3b151c999f70e275b2a7ae5c1b8ca7746f (
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.
# ABOR -- Compute the bitwise boolean 'or' of two vectors (generic).
procedure aborl (a, b, c, npix)
long a[ARB], b[ARB], c[ARB]
int npix, i
long orl()
begin
do i = 1, npix {
c[i] = orl (a[i], b[i])
}
end
|