how ot stop Matlab figure from maximizing?
8 ビュー (過去 30 日間)
古いコメントを表示
Adnan Ali
2014 年 8 月 21 日
編集済み: Salaheddin Hosseinzadeh
2014 年 8 月 21 日
When code is executed. Matlab figure is showed. I want to disable it Maximize Function. So my figure remain same as in 1st time run.
0 件のコメント
採用された回答
Salaheddin Hosseinzadeh
2014 年 8 月 21 日
編集済み: Salaheddin Hosseinzadeh
2014 年 8 月 21 日
Hi Adnan,
It's simple just create your figure as follow
h = figure('Resize','off')
or if the figure is generated use gcf
set(gcf,'Resize','off') % or on to enable resizing
More adjustments and info is also available in matlab documentation, about figure and figure properties.
doc figure
Good Luck!
0 件のコメント
その他の回答 (0 件)
参考
カテゴリ
Help Center および File Exchange で Interactive Control and Callbacks についてさらに検索
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!