diff options
author | Joseph Hunkeler <jhunkeler@gmail.com> | 2015-07-08 20:46:52 -0400 |
---|---|---|
committer | Joseph Hunkeler <jhunkeler@gmail.com> | 2015-07-08 20:46:52 -0400 |
commit | fa080de7afc95aa1c19a6e6fc0e0708ced2eadc4 (patch) | |
tree | bdda434976bc09c864f2e4fa6f16ba1952b1e555 /sys/vops/ak/aborks.x | |
download | iraf-linux-fa080de7afc95aa1c19a6e6fc0e0708ced2eadc4.tar.gz |
Initial commit
Diffstat (limited to 'sys/vops/ak/aborks.x')
-rw-r--r-- | sys/vops/ak/aborks.x | 18 |
1 files changed, 18 insertions, 0 deletions
diff --git a/sys/vops/ak/aborks.x b/sys/vops/ak/aborks.x new file mode 100644 index 00000000..a8de717a --- /dev/null +++ b/sys/vops/ak/aborks.x @@ -0,0 +1,18 @@ +# Copyright(c) 1986 Association of Universities for Research in Astronomy Inc. + +# ABORK -- Compute the bitwise boolean or of a vector and a constant +# (generic). + +procedure aborks (a, b, c, npix) + +short a[ARB] +short b +short c[ARB] +int npix, i +short ors() + +begin + do i = 1, npix { + c[i] = ors (a[i], b) + } +end |