expected value of matrix
20 visualizaciones (últimos 30 días)
Mostrar comentarios más antiguos
rakesh kumar
el 30 de En. de 2022
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 comentarios
Respuesta aceptada
VBBV
el 30 de En. de 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
Más respuestas (1)
Ver también
Categorías
Más información sobre Creating and Concatenating Matrices en Help Center y File Exchange.
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!