About color of multi curve

1 visualización (últimos 30 días)
ly
ly el 26 de Mzo. de 2016
Respondida: Walter Roberson el 26 de Mzo. de 2016
Hi,
I want to change color of curves automatically
for i=1:3
plot(x,y,'color');hold on;
end
color=b,r,k (blue, red, black) with curve (i=1, 2, 3)
Can you help?

Respuesta aceptada

Walter Roberson
Walter Roberson el 26 de Mzo. de 2016
colors = {'b', 'r', 'k'};
for i=1:3
plot(x, y, colors{i});hold on;
end

Más respuestas (0)

Categorías

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

Community Treasure Hunt

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

Start Hunting!

Translated by