Two vectors different from each other at least at two points
1 回表示 (過去 30 日間)
古いコメントを表示
I want to compare two vectors and check whether they are different at least at two coordinates.
0 件のコメント
採用された回答
jonas
2018 年 10 月 6 日
編集済み: jonas
2018 年 10 月 6 日
sum(abs(V1-V2)~=0)>=2
Will output 1 if they differ at two or more indices. You may want to set a tolerance if they are floating point numbers.
tol=0.01
sum(abs(V1-V2)>tol)>=2
その他の回答 (0 件)
参考
カテゴリ
Help Center および File Exchange で Logical についてさらに検索
製品
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!