Wednesday, November 14, 2007

[Matlab] Create a figure with specified location and size

Source

Matlab Help, figure

Syntax

rect = [left bottom width height];
% The unit of rect is pixel by default.
% left = the distance between the left of the figure and the left of the screen
% bottom = the distnace between the bottom of the figure and the bottom of the screen
figure( 'Position', rect );

Code

No comments: