How to Plot multicolor Vector
古いコメントを表示
Hello,
I have a line code which is:
plot(Srn(:,1),'*g')
the vector Srn has 178 elements. How can I plot the range 1-59 in red, 60-131 in black and 132-178 in blue?
Thanks
回答 (1 件)
the cyclist
2013 年 6 月 26 日
Here's one way:
figure
hold on
plot(Srn(1:59,1),'*r')
plot(Srn(60:131,1),'*k')
plot(Srn(132:178,1),'*b')
2 件のコメント
Wellinton
2013 年 6 月 27 日
the cyclist
2013 年 6 月 27 日
If you found that my answer solved your question, you may want to officially accept it, which will help people looking for similar solutions in the future.
カテゴリ
ヘルプ センター および File Exchange で 2-D and 3-D Plots についてさらに検索
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!