MATLAB Function Reference
  Go to function:
    Search    Help Desk 
moviein    Examples   See Also

Allocate matrix for movie frames

Syntax

Description

moviein allocates an appropriately sized matrix for the getframe function.

M = moviein(n) creates matrix M having n columns to store n frames of a movie based on the size of the current Axes.

M = moviein(n,h) specifies a handle for a valid Figure or Axes graphics object on which to base the memory requirement. You must use the same handle with getframe. If you want to capture the axis

M = moviein(n,h,rect) specifies the rectangular area from which to copy the bitmap, relative to the lower-left corner of the Figure or Axes graphics object identified by h. rect = [left bottom width height], where left and bottom specify the lower-left corner of the rectangle, and width and height specify the dimensions of the rectangle. Components of rect are in pixel units. You must use the same handle and rectangle with getframe.

Examples

Use moviein to allocate a matrix for the movie frames and getframe to create the movie:

See Also

getframe, movie



[ Previous | Help Desk | Next ]