MATLAB: How to change the line color in a graph using plot

how can i change the line color in a graph using plot?

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

Best Answer

plot(x,y,'r') %r refers to red color
See colors to know how many colours are available.
Related Question