MATLAB: What figure properties does graymon sets

change figure propertiesdefault figure properties;get default figure propertiesgraymon

I want to change often between the figure properties that the comand
graymon
sets to the 'normal' ones. I guess it would help to know which properties this command changes. Is there an "rgbmon" kind of command?
Thanks!

Best Answer

You can see the inner workings of graymon with
type graymon.m
It changes the DefaultAxesColorOrder for all current and future axis objects. Starting with graymon.m, you could create a rgbmon by replacing the definition of co with
co = [ 0 0 1.0000
0 0.5000 0
1.0000 0 0
0 0.7500 0.7500
0.7500 0 0.7500
0.7500 0.7500 0
0.2500 0.2500 0.2500];