フィルターのクリア

How do I add color to this line of code without repeating the time variable everytime?

1 回表示 (過去 30 日間)
plot(time,[accLong,accVert,accLat,],'linewidth',2) % plot all
I do not want to use this version
plot(time,accLong,'r',time,accVert,'b',time,accLat,'k','linewidth',2) % plot all

採用された回答

Ameer Hamza
Ameer Hamza 2020 年 9 月 24 日
Use plot handles to set the color
t = 1:10;
x1 = rand(size(t));
x2 = rand(size(t));
p = plot(t, [x1; x2]);
p(1).color = 'r'; % color of first line
p(2).color = 'b'; % color of second line
  2 件のコメント
suleiman abdullahi
suleiman abdullahi 2020 年 9 月 24 日
Thanks for the response, is there another way without creating the variable p?
Ameer Hamza
Ameer Hamza 2020 年 9 月 24 日
I don't think there is an easy way. Any other solution will lead to more variables.

サインインしてコメントする。

その他の回答 (0 件)

カテゴリ

Help Center および File ExchangeIntroduction to Installation and Licensing についてさらに検索

製品


リリース

R2019a

Community Treasure Hunt

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

Start Hunting!

Translated by