Matlab figure graph color

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.

Mostaid Ahmed

Posted 2014-09-10T15:36:11.590

Reputation: 1

may be this might help? https://www.mathworks.com/matlabcentral/newsreader/view_thread/165945

– user13267 – 2014-09-10T15:49:12.693

Answers

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.

shkristensen

Posted 2014-09-10T15:36:11.590

Reputation: 114