Make Matlab stop maximizing every time it changes a variable.

1 view (last 30 days)
When a run a .m script, whenever MatLab changes a variable he maximizes, even if I minimize it will just maximize again. Is there any way of disabling that?
  7 Comments
Jason Ross
Jason Ross on 7 Mar 2013
Also, what operating system you are using might be relevant. If it's Linux, also let us know what window manager is in use.
Shizuka
Shizuka on 7 Mar 2013
I'm using Windows. I'm going to try and find what is maximizing the window now.

Sign in to comment.

Accepted Answer

Sean de Wolski
Sean de Wolski on 7 Mar 2013
In order to use graphics (and update them) there are a few things you can do.
  • Turn the figure's visibility off:
hFig = figure('Visible','off');
surf(peaks);
Now to turn it on after it's done:
set(hFig,'Visible','on');
  • The other option is to use low-level plotting functionality such as line, surf and patch. These don't elevate ML.

More Answers (0)

Categories

Find more on Graphics Object Programming in Help Center and File Exchange

Tags

No tags entered yet.

Community Treasure Hunt

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

Start Hunting!