How to average certain columns in a matrix
    13 Ansichten (letzte 30 Tage)
  
       Ältere Kommentare anzeigen
    
    Gregory Manoukian
 am 2 Jul. 2021
  
    
    
    
    
    Beantwortet: madhan ravi
      
      
 am 2 Jul. 2021
            I have a 107x16 matrix, the first column is time data, the last 15 are data points. I'd like to average the 15 data columns and collapse this matrix into a 107x2 matrix of time and average data.
Thank you!
0 Kommentare
Akzeptierte Antwort
  madhan ravi
      
      
 am 2 Jul. 2021
        
      Bearbeitet: madhan ravi
      
      
 am 2 Jul. 2021
  
      matrix = rand(107, 16);
Matrix = [matrix(:, 1), mean(matrix(:, 2 : end), 2)];
size(Matrix)
0 Kommentare
Weitere Antworten (1)
  madhan ravi
      
      
 am 2 Jul. 2021
        T = array2table(rand(2, 3))
T = [T(:, 1), array2table(mean(T{:, 2 : end}, 2), 'V', {'AVERAGE'})] % where Var1 is the time data
0 Kommentare
Siehe auch
Kategorien
				Mehr zu Creating and Concatenating Matrices 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!