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!