How can I change the default window size, colors, etc., in MATLAB ?
From gray@SCR.slb.com … If you’re running MATLAB 4.x, something like the following should appear in your startup.m file: set(0,’DefaultFigurePosition’,[5,5,505,405]) set(0,’DefaultFigureColor’,[0,0,0]) %%N.B this has side %%effects. set(0,’DefaultAxesFontName’,’times’) set(0,’DefaultTextFontName’,’times’) set(0,’DefaultAxesFontSize’,12) set(0,’DefaultTextFontSize’,12) or from Brian Fitzgerald < fitzgb@mml0.meche.rpi.edu > …