How to plot data of 3 columns with different line style.
3 ビュー (過去 30 日間)
古いコメントを表示
Rangasamy Kotteeswaran
2017 年 8 月 21 日
コメント済み: Rangasamy Kotteeswaran
2017 年 8 月 21 日
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
0 件のコメント
採用された回答
José-Luis
2017 年 8 月 21 日
編集済み: José-Luis
2017 年 8 月 21 日
Best to do it explicitly for each line, but if you want automagic:
set(groot,'defaultAxesColorOrder',[0,0,0],'defaultAxesLineStyleOrder','-|:|--');
plot(rand(10,3))
その他の回答 (0 件)
参考
製品
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!