How to get the indices of specified name

4 ビュー (過去 30 日間)
Kanakaiah Jakkula
Kanakaiah Jakkula 2017 年 4 月 15 日
コメント済み: Kanakaiah Jakkula 2017 年 4 月 16 日
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

採用された回答

the cyclist
the cyclist 2017 年 4 月 15 日
C = {'Mek989.0';
'YTG873.0';
'RFD645.0';
'RFD645.0';
'WER134.0';
'WER134.0'};
output = find(not(ismember(C,'RFD645.0')));
  7 件のコメント
the cyclist
the cyclist 2017 年 4 月 15 日
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 2017 年 4 月 16 日
Yes, It works, perfect. Thanks a lot.

サインインしてコメントする。

その他の回答 (0 件)

カテゴリ

Help Center および File ExchangeCreating and Concatenating Matrices についてさらに検索

タグ

Community Treasure Hunt

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

Start Hunting!

Translated by