0
I have installed Matlab 2013a in my system. When plotting a graph by "ezplot" command, the color of the graphs in the figure is by default set as green. I want to change the color in Deep blue. How is it possible.
0
I have installed Matlab 2013a in my system. When plotting a graph by "ezplot" command, the color of the graphs in the figure is by default set as green. I want to change the color in Deep blue. How is it possible.
0
After the line with the ezplot command, add this
set(h, 'Color', 'b');
b is for blue. ither letters will give you red (r), yellow (y) and so forth.
may be this might help? https://www.mathworks.com/matlabcentral/newsreader/view_thread/165945
– user13267 – 2014-09-10T15:49:12.693