Plotting array elements in different colors
3 ビュー (過去 30 日間)
古いコメントを表示
Hello,
Can someone explain how to plot the array elements in different colours I mean how to plot the array elements like from 1:500 in red color then 501:1000 in blue colour 1001:1500 in different colour.
Thankyou.
0 件のコメント
採用された回答
Azzi Abdelmalek
2014 年 4 月 8 日
x=1:1500;
y=rand(1,1500);
plot(x(1:500),y(1:500),'r')
hold on
plot(x(501:1000),y(501:1000),'b')
plot(x(1001:1500),y(1001:1500),'k')
hold off
0 件のコメント
その他の回答 (0 件)
参考
カテゴリ
Help Center および File Exchange で Surfaces, Volumes, and Polygons についてさらに検索
製品
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!