How to get the indices of specified name

1 vue (au cours des 30 derniers jours)
Kanakaiah Jakkula
Kanakaiah Jakkula le 15 Avr 2017
Hi,
I have below cell array
Mek989.0
YTG873.0
RFD645.0
RFD645.0
WER134.0
WER134.0
my specified name:RFD645.0, and I want to find the indices of rows which is not "RFD645.0" here in this case, row1,2,5,6. My desired output is:
1
2
5
6

Réponse acceptée

the cyclist
the cyclist le 15 Avr 2017
C = {'Mek989.0';
'YTG873.0';
'RFD645.0';
'RFD645.0';
'WER134.0';
'WER134.0'};
output = find(not(ismember(C,'RFD645.0')));
  7 commentaires
the cyclist
the cyclist le 15 Avr 2017
You mean you want to find the first element that does not match?
indx=find(not(strcmpi(C,'RFD645.0')),1,'first')
Kanakaiah Jakkula
Kanakaiah Jakkula le 16 Avr 2017
Yes, It works, perfect. Thanks a lot.

Connectez-vous pour commenter.

Plus de réponses (0)

Catégories

En savoir plus sur Matrices and Arrays dans Help Center et File Exchange

Tags

Community Treasure Hunt

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

Start Hunting!

Translated by