Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
私は2つのベクトルを持っています
g_counter = [2 0]
と
list = [3 0]
私はこれを得るでしょう:
g_counter
list
2ベクトルに対応する値がlistゼロではないため、取得できません。0ベクトルの対応する値がlistゼロに等しいことを取得します
2
0
この要素のインデックスをg_counterベクトルで取得します。
私が理解したことから、あなたはそのようなことをするべきです:
zeros=find(list==0); g_counter(zeros) %this will print the values for which the index is 0 in the vector list