Mesh2:

Path: Common/Graphics

% 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. An example:

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

--------------------------------------------------------------------------
   Form:
   hFig  = 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
   -------
   hFig   (1,1) Figure handle

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

Children:

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

Back to the Common Module page