How do I specify the diagonal elements of a matrix?
37 vues (au cours des 30 derniers jours)
Afficher commentaires plus anciens
I have some values, taken from another matrix. How do I specify them to be the diagonals of a new matrix?
1 commentaire
Réponses (2)
Matt Tearle
le 13 Fév 2011
To do a subscripted assignment into the diagonal of a matrix, you can use linear indexing:
A(1:n+1:end) = v
(where v is an n-element vector and n is the number of rows of A). So, for example,
A(1:n+1:end) = diag(B)
copies the diagonal of B into A.
5 commentaires
Voir également
Catégories
En savoir plus sur Operating on Diagonal 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!