Line series marker question

When plotting, is it possible to have more than one marker type for the same line series? eg.... plot([0 1],[0 1]) - with two different markers?

 Respuesta aceptada

Walter Roberson
Walter Roberson el 13 de Oct. de 2011

0 votos

No, any one lineseries is restricted to a single marker type. If you want different markers then you must either split in to different lineseries or you must text() or line() the markers in to place yourself. If you text() or line() the markers yourself, watch out for the effects of zoom.

Más respuestas (1)

Wayne King
Wayne King el 13 de Oct. de 2011

0 votos

Yes,
plot([0 1],[0 1],'b-*');
hold on;
plot([0 1],[0 1],'r-.^'); axis([-0.5 1.5 -0.5 1.5]);
% or
clf
plot([0 1],[0 1],'b-*',[0 1],[0 1],'r-.^');
axis([-0.5 1.5 -0.5 1.5]);

Categorías

Preguntada:

el 13 de Oct. de 2011

Community Treasure Hunt

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

Start Hunting!

Translated by