How can I change the line color in a graph using plot?

1 view (last 30 days)
How can I change the line color in a graph using plot? any one please reply
-------- vivek overtrade

Accepted Answer

Mischa Kim
Mischa Kim on 23 Jul 2014
vivek, check out the doc for starters, e.g.
x = 0:0.1:5;
y = sin(x);
plot(x,y,'r-o')

More Answers (1)

SRI
SRI on 23 Jul 2014
T = 0:0.1:10;
Y = sin(T.*pi);
plot(y,'r')
Hi vivek Just try this

Categories

Find more on Graph and Network Algorithms in Help Center and File Exchange

Tags

Community Treasure Hunt

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

Start Hunting!