Matlab msgbox大小的设置
(2012-09-01 12:23:21)
标签:
校园 |
分类: MATLAB |
For example:
str='Hello world'
h=msgbox(str)
% set(h,'Resize', 'on'); %
set(h,'Position',[100 100 500 500])
%通过修改后边的四个坐标值可以改变msgbox的位置和大小
str='Hello world'
h=msgbox(str)
% set(h,'Resize', 'on');
set(h,'Position',[100 100 500 500])