blob: e0ecf2fce192f567204c8ffe88f3e4c15b62d2bf (
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 abori (a, b, c, npix)
int a[ARB], b[ARB], c[ARB]
int npix, i
int or()
begin
do i = 1, npix {
c[i] = or (a[i], b[i])
}
end
|