# Copyright(c) 1986 Association of Universities for Research in Astronomy Inc. # APOW -- Compute a ** b, where b is of type INT (generic). procedure apowr (a, b, c, npix) real a[ARB], c[ARB] int b[ARB] int npix, i begin do i = 1, npix c[i] = a[i] ** b[i] end