blob: 71dbbe670b8eb8682d14ebcd8b9888895de7f03c (
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 aimgs (a, b, npix)
complex a[ARB]
short b[ARB]
int npix, i
begin
do i = 1, npix
b[i] = aimag (a[i])
end
|