blob: ce6797426129319d51ac4a222f68523eb7fd40f4 (
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
32
33
34
35
36
37
38
39
|
# Copyright(c) 1986 Association of Universities for Research in Astronomy Inc.
# ARCZ -- Vector reciprocal with checking for zero divisors. If the result
# of a divide would be undefined a user supplied function is called to get the
# output pixel value.
#
# NOTE: in the interests of simplicity a somewhat arbitrary tolerance is used
# to check for an undefined divide, i.e., a divide by zero or a divide by a
# number small enough to cause floating point overflow. A better way to do
# this would be to provide a machine dependent version of this operator in
# host$as which catches the hardware exception rather than using a comparison.
procedure arczi (a, b, c, npix, errfcn)
int a # numerator
int b[ARB], c[ARB] # divisor, and output arrays
int npix # number of pixels
int errfcn() # user function, called on divide by zero
int i
int divisor
extern errfcn()
errchk errfcn
begin
if (a == 0) {
call aclri (c, npix)
return
}
do i = 1, npix {
divisor = b[i]
if (divisor == 0)
c[i] = errfcn (a)
else
c[i] = a / divisor
}
end
|