I have this vector
g_counter = [5 6 9 0 0];
list = [1 2 3];
If I do
g_counter(list)
I get 5 6 9 instead I would get 0 0. I would obtain complementary elements

 採用された回答

Andrei Bobrov
Andrei Bobrov 2012 年 11 月 8 日
編集済み: Andrei Bobrov 2012 年 11 月 8 日

0 投票

g_counter = [5 6 9 0 0];
out = g_counter(g_counter == 0);
or
g_counter = [5 6 9 0 0];
list = [1 2 3];
out = g_counter(setdiff(1:numel(g_counter),list));
or
g_counter = [5 6 9 0 0];
list = [1 2 3];
t = true(size(g_counter));
t(list) = false;
out = g_counter(t);

2 件のコメント

Salvatore Mazzarino
Salvatore Mazzarino 2012 年 11 月 8 日
It isn't what I asked
Salvatore Mazzarino
Salvatore Mazzarino 2012 年 11 月 8 日
Ok the second answer resolved my problem. Thanks so much

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

その他の回答 (0 件)

カテゴリ

ヘルプ センター および File Exchange で Matrix Indexing についてさらに検索

Community Treasure Hunt

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

Start Hunting!

Translated by