expected value of matrix
22 visualizzazioni (ultimi 30 giorni)
Mostra commenti meno recenti
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 Commenti
Risposta accettata
VBBV
il 30 Gen 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
Più risposte (1)
Vedere anche
Categorie
Scopri di più su Creating and Concatenating Matrices in Help Center e File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!