Effacer les filtres
Effacer les filtres

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

1 vue (au cours des 30 derniers jours)
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 commentaires
jaah navi
jaah navi le 10 Fév 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

Connectez-vous pour commenter.

Réponse acceptée

madhan ravi
madhan ravi le 10 Fév 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

Plus de réponses (0)

Catégories

En savoir plus sur Line Plots dans Help Center et File Exchange

Tags

Community Treasure Hunt

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

Start Hunting!

Translated by