blob: 4c9f52801cbaf0dde01f09ce3bed2536a0eae846 (
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.
# ASUBK -- Subtract a constant from a vector (generic).
procedure asubkx (a, b, c, npix)
complex a[ARB]
complex b
complex c[ARB]
int npix, i
begin
do i = 1, npix
c[i] = a[i] - b
end
|