diff options
Diffstat (limited to 'sys/vops/acjgx.x')
-rw-r--r-- | sys/vops/acjgx.x | 14 |
1 files changed, 14 insertions, 0 deletions
diff --git a/sys/vops/acjgx.x b/sys/vops/acjgx.x new file mode 100644 index 00000000..1fc9f944 --- /dev/null +++ b/sys/vops/acjgx.x @@ -0,0 +1,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 |