Effacer les filtres
Effacer les filtres

how to find index of cell array?

7 vues (au cours des 30 derniers jours)
Leonardo Wayne
Leonardo Wayne le 19 Avr 2016
Commenté : Stephen23 le 19 Avr 2016
I want to the find row number of where the elements of cell array "motors_cell" match cell array "get_motors_no_workbook2" . The row number refers to where the match occurred in the cell "get_motors_no_workbook2". This should be done for any size of "motors_cell" and for different values as well.
Note: size of "get_motors_no_workbook2" can have multiple rows but one column.
  1 commentaire
Stephen23
Stephen23 le 19 Avr 2016
@Mohammad Abdalnasir Khalid Al-Hiyali: you asked a very similar question, which I answered:
Have you given up on that approach? If my answer answered your question then please consider accepting it.

Connectez-vous pour commenter.

Réponse acceptée

Adam
Adam le 19 Avr 2016
doc ismember
should work for this I think. e.g.
a = { 'a', 'b', 'c' };
b = { 'b', 'd', 'a', 'a', 'h', 'b' };
[~, idx] = ismember( b, a );
will give, for each element in b the index of the same element in a, if one exists. From that you should be able to get what you want.

Plus de réponses (0)

Catégories

En savoir plus sur Matrices and Arrays 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!

Translated by