Plot with different Line Specs

5 vues (au cours des 30 derniers jours)
Guilherme Gaspar
Guilherme Gaspar le 11 Sep 2016
I want to plot three columns of the variable matrixA, with 3 different colors and markers:
'-ok', '-dk', '-+k'
I've tried numerous ways and none of them worked. My plot is this:
vodd = [1:2:5];
semilogy(x,matrixA(:,vodd))
Additionally, I will want to add more matrices, with 3 columns, and specify each collumn with a different color/marker.
semilogy(x,matrixA(:,vodd),x,matrixB(:,vodd),....)
How do I do this?

Réponse acceptée

Guilherme Gaspar
Guilherme Gaspar le 11 Sep 2016
I finally did it:
figure;
namearray={'LineStyle', 'Marker', 'Color'};
valuearray={'-','d','k';... %matrixA
'-','o','k';...%matrixA
'-','+','k';...%matrixA
'-','d','r';...%matrixB
'-','o','r';...%matrixB
'-','+',''};%matrixB
pl=semilogy(x,matrixA(:,vodd),x,matrixB(:,vodd))
set(pl, namearray, valuearray);

Plus de réponses (0)

Catégories

En savoir plus sur Line Plots dans Help Center et File Exchange

Community Treasure Hunt

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

Start Hunting!

Translated by