How do I get the value at a particular index?
150 vues (au cours des 30 derniers jours)
Afficher commentaires plus anciens
So I have indices corresponding to values that I want. Is there a MATLAB function that would allow me to output the values when I input the indices of those values?
5 commentaires
Luis J Gilarranz
le 1 Mar 2020
Walter Roberson
le 1 Mar 2020
Yes the techniques there are good, except I would not use the diag() one
Réponses (1)
Siriniharika Katukam
le 29 Oct 2019
Hi
Consider A as the matrix, and x as indices, then
Values = A(x)
In case you need value of a 2-D matrix, define 'rowMatrix' which has the row indices and 'colMatrix' which has corresponding column indices, then
Values = A(rowMatrix, colMatrix)
0 commentaires
Voir également
Catégories
En savoir plus sur Matrix Indexing 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!