Distance between point and an array.
Show older comments
How can I find distance between a point and an n-array elements.
Answers (1)
Walter Roberson
on 13 Oct 2019
0 votes
pdist2()
2 Comments
Silpa K
on 13 Oct 2019
Walter Roberson
on 13 Oct 2019
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))
Categories
Find more on Logical in Help Center and File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!