How can calculate this formula?
1 vue (au cours des 30 derniers jours)
Afficher commentaires plus anciens
I have a matrix of price time series (p1,p2...pn) and their weights w(1,n). How can calculate this formula?
0 commentaires
Réponses (1)
Matt J
le 5 Nov 2015
Modifié(e) : Matt J
le 5 Nov 2015
v = w(:) .* sigma(:);
sigmaIndex = v.' * rho * v;
3 commentaires
Matt J
le 5 Nov 2015
I had a typo. The 2nd line should be
sigmaIndex = v.' * rho * v;
If that wasn't the misunderstanding, it's unclear what is. All of the variables are from notation given by you in your post.
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!