获取索引元素

时间:2012-11-10 09:49:00

标签: matlab matrix indexing

我有两个载体

g_counter = [2 0]

list = [3 0]

我会得到这个:

  1. 选择g_counter向量中具有相应值等于零的list的所有元素。
  2. 2list向量中的对应值不为零,所以我不会得到它。我会得到0 list向量中的对应值等于零

    0
    
    1. g_counter向量中获取此元素的索引。

      2

1 个答案:

答案 0 :(得分:1)

据我所知,你应该这样做:

zeros=find(list==0);
g_counter(zeros) %this will print the values for which the index is 0 in the vector list