MATLAB: Delete the figure header

figure

Hey Guys, me again. Is it possible to delete the header of a figure. by header I mean the area where the name of the figure and the cross the close the figure are. I just want a empty figure….without anything. I use 'MenuBar', 'None' to delete the menuBar but its not empty enough.

Best Answer

I don't think you can have a figure without the title bar. It's pretty much a common part of any application window in Windows, nevermind just a Matlab figure.
You can get rid of the default figure number with:
figure('MenuBar', 'None', 'NumberTitle', 'off')
but you still get the title bar with minimize, maximize etc.