getting elements of a vector

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

 Réponse acceptée

Andrei Bobrov
Andrei Bobrov le 8 Nov 2012
Modifié(e) : Andrei Bobrov le 8 Nov 2012

0 votes

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 commentaires

Salvatore Mazzarino
Salvatore Mazzarino le 8 Nov 2012
It isn't what I asked
Salvatore Mazzarino
Salvatore Mazzarino le 8 Nov 2012
Ok the second answer resolved my problem. Thanks so much

Connectez-vous pour commenter.

Plus de réponses (0)

Catégories

En savoir plus sur Matrices and Arrays dans Centre d'aide et File Exchange

Community Treasure Hunt

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

Start Hunting!

Translated by