threepoints2planez

版本 1.0.0.0 (1.4 KB) 作者: Chad Greene
Given three points in space, get coefficients of a plane in the form z = slopex*x + slopey*y + C.
327.0 次下载
更新时间 2014/8/13

查看许可证

THREEPOINTS2PLANEZ returns coefficients for an equation of a plane that passes through three points in 3D space. Equation of the plane is in the form

z = slopex*x + slopey*y + C

Example:
Given three random points in x and y, define a z plane having a slope of 2.1 in the x direction and -3.4 in the y direction. Verify that threepoints2planez returns the correct slopes and z intercept:

x = rand(3,1);
y = rand(3,1);
z = 2.1*x - 3.4*y + 19;

[slopex,slopey,C] = threepoints2planez(x,y,z)

slopex =
2.1000

slopey =
-3.4000

C =
19.0000

UPDATE:
After writing this function I found Kevin Moerman's plane_fit function (http://www.mathworks.com/matlabcentral/fileexchange/22042), which uses singular value decomposition to get the same answers. A quick comparison calling plane_fit and threepoints2planez 10,000 times finds that plane_fit is ~20% faster than threepoints2planez (2.9 seconds vs 3.7 seconds). However, threepoints2planez is designed to be more robust (e.g., inputs may be any mix of row or column vectors) and threepoints2planez performs input checks to prevent returning nonphysical numbers. For example, threepoints2planez will return an error message if all three points are collinear, whereas plane_fit will return slope and intercept values even if all inputs are collocated. Choose the function which best suits your needs.

引用格式

Chad Greene (2024). threepoints2planez (https://www.mathworks.com/matlabcentral/fileexchange/47525-threepoints2planez), MATLAB Central File Exchange. 检索来源 .

MATLAB 版本兼容性
创建方式 R2012b
兼容任何版本
平台兼容性
Windows macOS Linux
类别
Help CenterMATLAB Answers 中查找有关 Image Filtering and Enhancement 的更多信息
标签 添加标签

Community Treasure Hunt

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

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