Mesh2:

--------------------------------------------------------------------------
   Draws mesh plots with axis labels. 
   If either xCol or yRow are a scalar, draws a 2 dimensional plot. 
   Rows of z are y and columns are x.

   x = 1:10;
   y = 1:20;
   z = y'*x;
   Mesh2(x,y,z,'X','Y','Z')

   Since version 1.
--------------------------------------------------------------------------
   Form:
   Mesh2( xCol, yRow, z, xLbl ,yLbl, zLbl, figTitle )
--------------------------------------------------------------------------

   ------
   Inputs
   ------
   xCol                Column Indices
   yRow                Row indices
   z                   Z values
   xLbl                X label
   yLbl                Y label
   zLbl                Z label
   title               figTitle

   -------
   Outputs
   -------
   None

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

Children:

Common: Graphics/NewFig
Common: Graphics/XLabelS
Common: Graphics/YLabelS
Common: Graphics/ZLabelS