Printing row index or row of a matrix by searching for a particular value?

20 vues (au cours des 30 derniers jours)
Stewart Tan
Stewart Tan le 17 Août 2019
Commenté : Stewart Tan le 17 Août 2019
I have a matrix:
mat = [ 4 8 5 3;
31 4 5 3;
8 3 1 5];
and I want to display the row index or row of the matrix based on a value at the first column.
For example, the first column of the matrix has values 4, 31 and 8. What I'll want to do then is to print the row index or the whole row containing let's say the value 31 at the first column.. Hence the output will be either:
2 %which is the row index containing 31 as the first value
or
31 4 5 3 %the whole row of the matrix
I used the method of ismember():
idx = ismember(A(:,1),31)
But the problem is a logical array is returned, but if the matrix were to be extremely large, i wouldn't want to go through the whole logical array. I plan to use this for checking purposes.

Réponse acceptée

the cyclist
the cyclist le 17 Août 2019
Modifié(e) : the cyclist le 17 Août 2019
rowIndex = find(mat(:,1)==31); % Row index
row = mat(mat(:,1)==31,:); % Row
Note that one doesn't need the find command to get the row, because logical indexing will be used.
You could also have gotten it using ismember, as you tried, but swap the arguments:
[~,rowIndex] = ismember(31,mat(:,1));

Plus de réponses (0)

Catégories

En savoir plus sur Matrix Indexing dans Help Center et File Exchange

Produits

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by