How to plot lines of different colors

1 visualización (últimos 30 días)
Sumner
Sumner el 5 de Sept. de 2013
Ok so lets say I have a plot and I want to give it a unique color just for fun. plot(x,y,'z.-'); where z is the color I want to use. I've heard about some things like rgb codes. I've looked them up, tried them, tried them again dividing by 255 to get decimals, and nothing works for me.
ex: plot(x,y,'Color',[123,123,123],'.-');
What do I do?

Respuestas (1)

Walter Roberson
Walter Roberson el 5 de Sept. de 2013
plot(x, y, '.-', 'Color', [123, 123, 123])
or
plot(x, y, 'Color', [123, 123, 123], 'LineStyle', '.-')

Categorías

Más información sobre Line Plots en Help Center y File Exchange.

Etiquetas

Community Treasure Hunt

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

Start Hunting!

Translated by