我有两个载体
g_counter = [2 0]
和
list = [3 0]
我会得到这个:
g_counter
向量中具有相应值等于零的list
的所有元素。 2
在list
向量中的对应值不为零,所以我不会得到它。我会得到0
list
向量中的对应值等于零
0
在g_counter
向量中获取此元素的索引。
2
答案 0 :(得分:1)
据我所知,你应该这样做:
zeros=find(list==0);
g_counter(zeros) %this will print the values for which the index is 0 in the vector list