Distance between point and an array.
조회 수: 3 (최근 30일)
이전 댓글 표시
How can I find distance between a point and an n-array elements.
댓글 수: 0
답변 (1개)
Walter Roberson
2019년 10월 13일
pdist2()
댓글 수: 2
Walter Roberson
2019년 10월 13일
pdist2(point, array.')
However, for the simple 1D case, perhaps you want
abs(point - array)
and my guess is you want
min(abs(point - array))
참고 항목
카테고리
Help Center 및 File Exchange에서 Multidimensional Arrays에 대해 자세히 알아보기
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!