expected value of matrix
28 ビュー (過去 30 日間)
古いコメントを表示
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 件のコメント
採用された回答
VBBV
2022 年 1 月 30 日
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
その他の回答 (1 件)
参考
カテゴリ
Help Center および File Exchange で Creating and Concatenating Matrices についてさらに検索
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!