diff options
Diffstat (limited to 'sys/vops/aexp.gx')
-rw-r--r-- | sys/vops/aexp.gx | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/sys/vops/aexp.gx b/sys/vops/aexp.gx new file mode 100644 index 00000000..f631e7df --- /dev/null +++ b/sys/vops/aexp.gx @@ -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 aexp$t (a, b, c, npix) + +PIXEL a[ARB], b[ARB], c[ARB] +int npix, i + +begin + do i = 1, npix + c[i] = a[i] ** b[i] +end |