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 个)
另请参阅
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!