How can I calculate the sample mean and sample variance
    29 Ansichten (letzte 30 Tage)
  
       Ältere Kommentare anzeigen
    
    Ihor
 am 4 Dez. 2022
  
    
    
    
    
    Beantwortet: RAGHUNATHRAJU DASHARATHA
      
 am 4 Dez. 2022
            I have a pseudo-random matrics M, sizes K-by-N. How can I calculate the sample mean and sample variance:
1) for each column,
2) for the whole matrix? 
0 Kommentare
Akzeptierte Antwort
  RAGHUNATHRAJU DASHARATHA
      
 am 4 Dez. 2022
        A per my understanding you want to calculate mean and variance for each column and whole matrix.
I'll demonstrate it using below example
a=randi(10,3) % generates pseudo random matrix
%Mean and Variance for each column
[V,M]=var(a)
%Mean and Variance for whole matrix
[b,c]=var(a,0,"all")
for further more go through this link
0 Kommentare
Weitere Antworten (0)
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!

