Plotting colums from matrix
    8 Ansichten (letzte 30 Tage)
  
       Ältere Kommentare anzeigen
    
I am looking to plot certain colums from a matrix. I want to plot colums 7-10 and column 12 all on a line graph. Thanks
1 Kommentar
Antworten (1)
  William
      
 am 14 Apr. 2015
        If your data array is like...... data(row,column)
a = data(:,7:10)
b = data(:,12)
hold on
plot(a)
plot(b)
hold off
0 Kommentare
Siehe auch
Kategorien
				Mehr zu 2-D and 3-D 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!


