home *** CD-ROM | disk | FTP | other *** search
/ Liren Large Software Subsidy 10 / 10.iso / l / l460 / 2.ddi / PLOTXYZ.DI$ / SURFACE.M < prev    next >
Encoding:
Text File  |  1993-03-07  |  1.1 KB  |  30 lines

  1. %SURFACE Create surface low-level objects.
  2. %    SURFACE(X,Y,Z,C) adds the surface in X,Y,Z,C to the current axes.
  3. %    SURFACE(X,Y,Z) uses C = Z, so color is proportional to surface height.
  4. %    See SURF for a complete description of the various forms that X,Y,Z,C
  5. %    can take.
  6. %
  7. %    SURFACE returns a handle to a SURFACE object. SURFACEs are children of
  8. %    AXES objects.
  9. %
  10. %    The arguments to SURFACE can be followed by parameter/value pairs
  11. %    to specify additional properties of the surface. The X,Y,Z,C arguments
  12. %    to SURFACE can be omitted entirely, and all properties specified using
  13. %    parameter/value pairs.
  14. %
  15. %     AXIS, CAXIS, COLORMAP, HOLD, SHADING and VIEW set figure, axes, and
  16. %    surface properties which affect the display of the SURFACE.
  17. %
  18. %       Execute GET(H), where H is a surface handle, to see a list of surface
  19. %       object properties and their current values. Execute SET(H) to see a
  20. %       list of surface object properties and legal property values.
  21. %
  22. %     See also SURF, LINE, PATCH, TEXT.
  23.  
  24. %    Copyright (c) 1984-93 by The MathWorks, Inc.
  25. %    Built-in function.
  26.  
  27.  
  28.  
  29.  
  30.