Clear Filters
Clear Filters

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

1 view (last 30 days)
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 Comments
jaah navi
jaah navi on 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

Sign in to comment.

Accepted Answer

madhan ravi
madhan ravi on 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

More Answers (0)

Categories

Find more on Line Plots in Help Center and File Exchange

Tags

Community Treasure Hunt

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

Start Hunting!