Filter löschen
Filter löschen

how ot stop Matlab figure from maximizing?

10 Ansichten (letzte 30 Tage)
Adnan Ali
Adnan Ali am 21 Aug. 2014
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.

Akzeptierte Antwort

Salaheddin Hosseinzadeh
Salaheddin Hosseinzadeh am 21 Aug. 2014
Bearbeitet: Salaheddin Hosseinzadeh am 21 Aug. 2014
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!

Weitere Antworten (0)

Kategorien

Mehr zu Interactive Control and Callbacks finden Sie in Help Center und File Exchange

Tags

Community Treasure Hunt

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

Start Hunting!

Translated by