blob: d819f2e9ebeebd48f48ef89bb361f77bfab44edd (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
|
# Copyright(c) 1986 Association of Universities for Research in Astronomy Inc.
# ABGEK -- Vector boolean greater than or equals constant. C[i], type INT,
# is set to 1 if A[i] is greater than or equal to B, else C[i] is set to zero.
procedure abgeki (a, b, c, npix)
int a[ARB]
int b
int c[ARB]
int npix
int i
begin
# The case b==0 is perhaps worth optimizing. On many machines this
# will save a memory fetch.
if (b == 0) {
do i = 1, npix
if (a[i] >= 0)
c[i] = 1
else
c[i] = 0
} else {
do i = 1, npix
if (a[i] >= b)
c[i] = 1
else
c[i] = 0
}
end
|