# Copyright(c) 1986 Association of Universities for Research in Astronomy Inc. # AMOD -- Compute the modulus of two vectors (generic). procedure amod$t (a, b, c, npix) PIXEL a[ARB], b[ARB], c[ARB] int npix, i begin do i = 1, npix c[i] = mod (a[i], b[i]) end