constructing sequence of ismember

1 回表示 (過去 30 日間)
antonet
antonet 2012 年 5 月 23 日
Hi all,
I have the vector A=
l1
‘l2’
‘Kl9’
‘E9’
In my case, A contains hundreds of different elements (‘l1’,‘l2’,…). I want to produce a series of
lopp(ismember(c,{'x' })) where x stands for each element of A So I want to have
B=[ lopp(ismember(c,{'l1' })) lopp(ismember(c,{'l2' })) lopp(ismember(c,{'KI9' })) lopp(ismember(c),{'E9' }))…]
Is there any code that will enable me to construct B automatically
thanks

回答 (1 件)

Walter Roberson
Walter Roberson 2012 年 5 月 23 日
[tf, idx] = ismember(c, A);
B = lopp(idx(tf))
  9 件のコメント
Walter Roberson
Walter Roberson 2012 年 5 月 23 日
There are repeats in c ? Hmmm, I'll have to think about this a bit more.
antonet
antonet 2012 年 5 月 24 日
yes i have repeated l1s l2s l3s l4s and l5s in c. thank you again

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

カテゴリ

Help Center および File ExchangeLogical についてさらに検索

タグ

Community Treasure Hunt

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

Start Hunting!

Translated by