Adding and subtracting values inside tables
    4 Ansichten (letzte 30 Tage)
  
       Ältere Kommentare anzeigen
    
    desert_scientist90
 am 25 Okt. 2019
  
    
    
    
    
    Bearbeitet: adeq123
      
 am 25 Okt. 2019
            Hi all, 
I have to tables one with the high values in x= amount of years , the other table with the low values for x= amount of years. I want to be able to calculate the mean of each and divide them by 2.
0 Kommentare
Akzeptierte Antwort
  adeq123
      
 am 25 Okt. 2019
        
      Bearbeitet: adeq123
      
 am 25 Okt. 2019
  
      Hi,
You can just use mean(). Like that:
clc;
clear all;
A = [2.189091 2.071748 1.663721 1.579909 1.542135 1.118777];
B = [-1.60278 -1.41313 -1.32337 -1.29252 -1.16406 -1.1271 -1.12233];
%Calcluate mean of each table
meanA = mean(A);
meanB = mean(B);
%Divide them by 2
meanA/2
meanB/2
0 Kommentare
Weitere Antworten (0)
Siehe auch
Kategorien
				Mehr zu Creating and Concatenating Matrices finden Sie in Help Center und File Exchange
			
	Produkte
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!