Filter löschen
Filter löschen

how to use more than one color for the plot with respect to the code given below

1 Ansicht (letzte 30 Tage)
code:
load fisheriris.mat
plot(meas(:,1),meas(:,2),'s')
the plot gives all the points to be in same color.
Could anyone help me how to display the points in different color instead of single color.
  3 Kommentare
jaah navi
jaah navi am 10 Feb. 2019
As fisheriris contains 150 rows first 25 should be in one color,next 25 in another color,next 25 in another color and so on.could you please help me on this

Melden Sie sich an, um zu kommentieren.

Akzeptierte Antwort

madhan ravi
madhan ravi am 10 Feb. 2019
Since I don't have the data :
R=rand(150,1); % example data
RR=reshape(R,25,[]); % reshape your data into 25 rows
plot(RR)% plots each 25 rows with n colors which is the column
% Remember MATLAB is column dominant

Weitere Antworten (0)

Kategorien

Mehr zu Line Plots finden Sie in Help Center und File Exchange

Tags

Community Treasure Hunt

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

Start Hunting!

Translated by