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

  1. %IMAGE    Display image (create image object).
  2. %     IMAGE(C) displays matrix C as an image.  Each element of C
  3. %    specifies the color of a rectilinear patch in the image. The
  4. %    elements of C are used as indices into the current COLORMAP
  5. %    to determine the color.
  6. %
  7. %     IMAGE(X,Y,C), where X and Y are vectors, specifies the labeling of
  8. %     X- and Y-axes, but produces the same image as IMAGE(C). Only the
  9. %       first and last elements of X and Y are used for the axis limits.
  10. %
  11. %    IMAGE returns a handle to an IMAGE object.
  12. %
  13. %    C or the X,Y,C triple can be followed by parameter/value
  14. %    pairs to specify additional properties of the image.
  15. %    C or the X,Y,C triple can be omitted entirely, and all
  16. %    properties specified using parameter/value pairs.
  17. %
  18. %    IMAGE sets the YDir axis property to 'reverse', and the View
  19. %    axis property to [0 90].  The image object will not render at other
  20. %       View angles.  To get a similar effect to rotating an image, use
  21. %       SURF with texture mapping or PCOLOR.
  22. %
  23. %       Execute GET(H), where H is an image handle, to see a list of image
  24. %       object properties and their current values. Execute SET(H) to see a
  25. %       list of image object properties and legal property values.
  26. %
  27. %       See also COLORMAP, PCOLOR, SURF.
  28.  
  29. %    Copyright (c) 1984-93 by The MathWorks, Inc.
  30. %    Built-in function.
  31.  
  32.  
  33.  
  34.  
  35.  
  36.