blob: 34958a6a83c36d6cc3b36b921d9f20d0d76ba6f0 (
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.
# AIMG -- Return the imaginary part of a COMPLEX vector.
procedure aimgl (a, b, npix)
complex a[ARB]
long b[ARB]
int npix, i
begin
do i = 1, npix
b[i] = aimag (a[i])
end
|