Borrar filtros
Borrar filtros

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

1 visualización (últimos 30 días)
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 comentarios
jaah navi
jaah navi el 10 de Feb. de 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

Iniciar sesión para comentar.

Respuesta aceptada

madhan ravi
madhan ravi el 10 de Feb. de 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

Más respuestas (0)

Categorías

Más información sobre Line Plots en Help Center y File Exchange.

Etiquetas

Community Treasure Hunt

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

Start Hunting!

Translated by