blob: 1fc9f9449532b61c81b526a1a0664841aee57524 (
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.
# ACJGX -- Complex conjugate of a complex vector.
procedure acjgx (a, b, npix)
complex a[ARB], b[ARB]
int npix
int i
begin
do i = 1, npix
b[i] = conjg (a[i])
end
|