how ot stop Matlab figure from maximizing?

10 次查看(过去 30 天)
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.

采纳的回答

Salaheddin Hosseinzadeh
编辑: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 个)

类别

Help CenterFile Exchange 中查找有关 Interactive Control and Callbacks 的更多信息

标签

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by