How to find euclidean distance
古いコメントを表示
Plz help me to find euclidean distance between two pixels within same image without using direct matlab command
2 件のコメント
Walter Roberson
2014 年 1 月 20 日
What is a "direct MATLAB command"? Even
3 + 5
is considered a command and invokes a MATLAB function ("plus")
Fahim Ahmed
2020 年 2 月 23 日
i guess he meant a matlab in-built command
採用された回答
その他の回答 (1 件)
Geetika
2014 年 1 月 21 日
2 投票
if you have two vectors with any number of point, for instance, x1=[1 2 3 4 5] and x2=[2 3 4 5 6], then Euc_dist = norm( x1 - x2 ) ;
カテゴリ
ヘルプ センター および File Exchange で Morphological Operations についてさらに検索
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!