Check for array equality?
1 回表示 (過去 30 日間)
古いコメントを表示
How can I check if indices of three arrays are equal and make those indices all zero if they are equal.
2 件のコメント
James Tursa
2015 年 2 月 3 日
Please provide a short example of your request. E.g., give three arrays and the desired output.
採用された回答
John D'Errico
2015 年 2 月 4 日
Not sure what the problem is. Why not just this?
ind = (A==B) && (A == C);
A(ind) = 0;
B(ind) = 0;
C(ind) = 0;
If this is not the answer, then you need to explain yourself FAR more clearly.
John
その他の回答 (0 件)
参考
カテゴリ
Help Center および File Exchange で Resizing and Reshaping Matrices についてさらに検索
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!