aboutsummaryrefslogtreecommitdiff
path: root/sys/vops/ak/aimgr.x
blob: a6e0e9101b480eb041afed9549f4fbf3c8871ba9 (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 aimgr (a, b, npix)

complex	a[ARB]
real	b[ARB]
int	npix, i

begin
	do i = 1, npix
	    b[i] = aimag (a[i])
end