blob: 772a1e9c5670e6f8a0fb271717d5ca234ad4f6f8 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
# Copyright(c) 1986 Association of Universities for Research in Astronomy Inc.
# AMOD -- Compute the modulus of two vectors (generic).
procedure amodr (a, b, c, npix)
real a[ARB], b[ARB], c[ARB]
int npix, i
begin
do i = 1, npix
c[i] = mod (a[i], b[i])
end
|