Plot using same colors

181 ビュー (過去 30 日間)
Orongo
Orongo 2019 年 5 月 14 日
回答済み: Kevin Phung 2019 年 5 月 14 日
Hi, I am plotting 100 lines in one plot and am zooming in on 10 of them (final 10 in a matrix). How can write so the 10 lines I zoom in on are of same colors in boths plots?

回答 (1 件)

Kevin Phung
Kevin Phung 2019 年 5 月 14 日
To plot in a specific color, scroll down in :
so you can do something like
col = [1 0 0] %RGB triplet,
a= plot(1:5,1:5,'Color',col)
%or
b= plot(1:5,1:5,'Color','r') % r for red
%you can set both lines to a different color at once:
set([a b],'Color','b');
^just apply this logic to the 10 plots you are talking about.

カテゴリ

Help Center および File ExchangeVisual Exploration についてさらに検索

タグ

Community Treasure Hunt

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

Start Hunting!

Translated by