blob: acf90c9134f1270f8e445f8fc65e23adfd5fc243 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
|
# Copyright(c) 1986 Association of Universities for Research in Astronomy Inc.
# AMOVK -- Copy a constant into a vector (generic).
procedure amovkx (a, b, npix)
complex a
complex b[ARB]
int npix, i
begin
do i = 1, npix
b[i] = a
end
|