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