diff options
Diffstat (limited to 'sys/vops/ak/aclrx.x')
-rw-r--r-- | sys/vops/ak/aclrx.x | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/sys/vops/ak/aclrx.x b/sys/vops/ak/aclrx.x new file mode 100644 index 00000000..a27e555f --- /dev/null +++ b/sys/vops/ak/aclrx.x @@ -0,0 +1,13 @@ +# Copyright(c) 1986 Association of Universities for Research in Astronomy Inc. + +# ACLR -- Zero a vector (generic). + +procedure aclrx (a, npix) + +complex a[ARB] +int npix, i + +begin + do i = 1, npix + a[i] = (0.0,0.0) +end |