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

help

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

Best Answer

Two examples:
plot(x, y, 'r') %named color, red
plot(x, y, 'Color', [0.37 0.88 .06]) %unnamed color given by relative intensities
Related Question