Finding distance between two points from 3D coordinates?

If I have two points in 3d, A = [1579.4 51.2 279]
B = [1674.4 86.7 249]
these are (x, y, z) coordinates in mm, What is the easiest way to compute the distance (mm) between these two points in matlab,
Thanks.

回答 (2 件)

Jan
Jan 2018 年 2 月 6 日
編集済み: Jan 2018 年 2 月 15 日

12 投票

sqrt(sum((A - B) .^ 2))
or:
norm(A - B)
Muhammd
Muhammd 2023 年 3 月 14 日

0 投票

P1=[x,y,z] P2=[x1,y1,z1] D=norm(P1-P2)

カテゴリ

ヘルプ センター および File ExchangeGuidance, Navigation, and Control (GNC) についてさらに検索

質問済み:

2018 年 2 月 6 日

回答済み:

2023 年 3 月 14 日

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by