MATLAB: How to set the default figure view to show plottools

MATLAB

How do I have my figures by default open in the Plot Tools view?
I want to have the Figure Palette, Plot Browser, and the Property Editor all in view by default when I open a figure

Best Answer

This can be done by adding the following line of code to a "startup.m" file.
>> set(groot,'defaultFigureCreateFcn','plottools(gcf)')
If a "startup.m" file does not already exist, create a "startup.m" file in the "userpath" folder, which is on the MATLAB search path. Add commands you want executed at startup. Please see the following link for more information: