z_eq_yx.F


c**********************************************************************
#include "author.inc"
c*    $Id: z_eq_yx.F,v 1.5 1995/07/30 17:49:49 turner Exp $
c*
c*    Computes z = y*x
c*
c*    <PARAMETER LIST>
c*
c*     Input:
c*      n - number of elements
c*      x - x-vector
c*      y - y-vector
c*
c*     Output:
c*      z - destination vector
c*      status - return status
c*
#include "copyright.inc"
c**********************************************************************
      subroutine JT_z_eq_yx (n, x, y, z, status)
      implicit none
c
c ... Input:
      integer n
      real x(n), y(n)
c
c ... Output:
      integer status
      real z(n)
c
c ... Local:
      integer i
c
      do i=1,n
       z(i) = y(i)*x(i)
      enddo
c
      status = 0
      return
      end