How to change color of x and y axis by red and blue

47 views (last 30 days)
I want to change the color of each axis by red & blue?
x=0:.1:1
axis([0 1 0 1]);
y=x.*(1-x);
plot(x,y,'g');
hold on
line([0 0], [0 1]);
hold on
line([0 1], [0 0]);

Accepted Answer

Azzi Abdelmalek
Azzi Abdelmalek on 7 May 2013
set(gca,'xcolor','r','ycolor','b')

More Answers (0)

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!