Plotting array elements in different colors

4 Ansichten (letzte 30 Tage)
Gova ReDDy
Gova ReDDy am 8 Apr. 2014
Beantwortet: Azzi Abdelmalek am 8 Apr. 2014
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.

Akzeptierte Antwort

Azzi Abdelmalek
Azzi Abdelmalek am 8 Apr. 2014
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

Weitere Antworten (0)

Kategorien

Mehr zu Surfaces, Volumes, and Polygons finden Sie in Help Center und File Exchange

Produkte

Community Treasure Hunt

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

Start Hunting!

Translated by