blob: 6ae42d4fa32c2090240a9a4d0ef73a24c857cc50 (
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 abors (a, b, c, npix)
short a[ARB], b[ARB], c[ARB]
int npix, i
short ors()
begin
do i = 1, npix {
c[i] = ors (a[i], b[i])
}
end
|