euclideanV

版本 1.1.0.0 (1.5 KB) 作者: Thomas Seers
Computes the 3D distance between two 3D point sets
252.0 次下载
更新时间 2013/8/6

查看许可证

INPUT: two sets of matching column vectors, x1, y1, z1 & x2, y2, z2 representing xyz coordinates of two 3D point sets. E.g:

x1=[1;1;1],y1=[1;1;1],
z1=[1;1;1]
x2=[2;2;2],y2=[2;2;2],
z2=[2;2;2]

OUTPUT: Single column vector, euclidV3D, with each row being the 3D distance between each position vector in the two point sets. E.g.

euclid3D=[1.7321; 1.7321; 1.7321]

USAGE: [euclidV3D] = euclideanV(x1, y1, z1, x2, y2, z2)

Function avoids for loops and is thus faster than the previously submitted function, euclidean (though less useful for higher dimension arrays).

引用格式

Thomas Seers (2024). euclideanV (https://www.mathworks.com/matlabcentral/fileexchange/42947-euclideanv), MATLAB Central File Exchange. 检索来源 .

MATLAB 版本兼容性
创建方式 R2013a
兼容任何版本
平台兼容性
Windows macOS Linux
类别
Help CenterMATLAB Answers 中查找有关 Point Cloud Processing 的更多信息

Community Treasure Hunt

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

Start Hunting!
版本 已发布 发行说明
1.1.0.0

06/08/2013: Updated file based on Jan's suggestions

1.0.0.0