How can i change colors of data in a 2D plot?
    3 Ansichten (letzte 30 Tage)
  
       Ältere Kommentare anzeigen
    
    Umair  Ahmed
 am 19 Mär. 2020
  
    
    
    
    
    Kommentiert: Ameer Hamza
      
      
 am 19 Mär. 2020
            hi, i am making a 2D plot and have multiple data which i want to be different colors. i used colormaps (lines, parula, prism).. but proble with them is after 3-4 data points the same color gets repeated again and again, and i not able to distinguish between data? can anyone help?
Thanks
1 Kommentar
  Ameer Hamza
      
      
 am 19 Mär. 2020
				The colors of lines made using plot() function is decided by the ColorOrder property of axes not Colormap.
Akzeptierte Antwort
  Ameer Hamza
      
      
 am 19 Mär. 2020
        
      Bearbeitet: Ameer Hamza
      
      
 am 19 Mär. 2020
  
      One way is to increase the colors in the ColorOrder property of the axes. For example, try
rng(0);
ax = axes();
ax.ColorOrder = rand(100, 3);
hold(ax);
%% now run the plot commands.
4 Kommentare
Weitere Antworten (0)
Siehe auch
Kategorien
				Mehr zu Data Distribution Plots finden Sie in Help Center und File Exchange
			
	Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!

