フィルターのクリア

How to make line plot of 3 different colors?

1 回表示 (過去 30 日間)
Zhou Ci
Zhou Ci 2021 年 7 月 25 日
編集済み: Zhou Ci 2021 年 7 月 25 日
Hello everyone,
Is there a way to change colors of line plot different at specific intervals? For example, I want line from 18-0 to be of one color, from 0-(-10) represents different color and -10 till -35 to be of an other color. Thank you.

採用された回答

Chunru
Chunru 2021 年 7 月 25 日
% data
x = [2:26 26:-1:-5];
y = [20:-1:-4 -5:-1:-36];
idx1 = y>=0;
idx2 = y>=-10 & y<=0;
idx3 = y<=-10;
plot(x(idx1), y(idx1), 'r-', x(idx2), y(idx2), 'g-', x(idx3), y(idx3), 'b-');
set(gca, 'YDir', 'reverse')

その他の回答 (0 件)

カテゴリ

Help Center および File ExchangeInstrument Connection and Communication についてさらに検索

Community Treasure Hunt

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

Start Hunting!

Translated by