aboutsummaryrefslogtreecommitdiff
path: root/sys/vops/lz/aupxd.x
blob: 38e9fa53e38e7e846c7d89fb3cc68d3342e991c1 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
# Copyright(c) 1986 Association of Universities for Research in Astronomy Inc.

# AUPX -- Unpack the real and imaginary components of a complex vector into
# two output vectors of some other type.

procedure aupxd (a, b, c, npix)

complex	a[ARB]			# input vector
double	b[ARB], c[ARB]	# output vectors
int	npix
int	i

begin
	do i = 1, npix {
		b[i] = real  (a[i])
		c[i] = aimag (a[i])
	}
end