Product:

-------------------------------------------------------------------------------
   Computes product of the terms in a vector
   If a matrix it computes products of the terms in each row and
   returns a column vector.
-------------------------------------------------------------------------------
   Form:
   p = Product( v )
-------------------------------------------------------------------------------

   ------
   Inputs
   ------
   v                  Vector

   -------
   Outputs
   -------
   p                  Product

-------------------------------------------------------------------------------

Children: