How to plot data of 3 columns with different line style.

3 vues (au cours des 30 derniers jours)
Rangasamy Kotteeswaran
Rangasamy Kotteeswaran le 21 Août 2017
i am supposed to plot the data plot(EX_1(1:100,1:3),'k-'). with this I get 3 plots with same black solid style. But i need different colours. any answer. thanks in advance

Réponse acceptée

José-Luis
José-Luis le 21 Août 2017
Modifié(e) : José-Luis le 21 Août 2017
Best to do it explicitly for each line, but if you want automagic:
set(groot,'defaultAxesColorOrder',[0,0,0],'defaultAxesLineStyleOrder','-|:|--');
plot(rand(10,3))
  3 commentaires
Adam
Adam le 21 Août 2017
If you are in an archaic version of Matlab use
set( 0,... )
instead
Rangasamy Kotteeswaran
Rangasamy Kotteeswaran le 21 Août 2017
thankyou. it worked

Connectez-vous pour commenter.

Plus de réponses (0)

Catégories

En savoir plus sur Graphics Performance dans Help Center et File Exchange

Tags

Produits

Community Treasure Hunt

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

Start Hunting!

Translated by