expected value of matrix
10 vues (au cours des 30 derniers jours)
Afficher commentaires plus anciens
I have a random vector alpha with mean zero and standard deviation one, I want to find the expected value of alpha *alpha transpose
E[alpha*alpha']
0.0994
0.3661
-0.2125
0.2839
0 commentaires
Réponse acceptée
VBBV
le 30 Jan 2022
alpha = [0.0994
0.3661
-0.2125
0.2839]
alpha.'
E = alpha.*alpha.'
Exp = mean(E) % expected value
Use mean function for your 4x4 matrix
Plus de réponses (1)
Voir également
Catégories
En savoir plus sur Creating and Concatenating Matrices dans Help Center et File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!