距离 3D 中四条线最近的点
给定 3D 中的 4 条线(表示为几个点),我想找到空间中的点,使该点与每条线之间的距离总和最小。
我正在尝试找到一种方法将其表述为最小二乘问题,但我不太确定应该如何解决。我目前正在尝试使用以下位置提供的距离定义: http://mathworld.wolfram .com/Point-LineDistance3-Dimensional.html
有什么想法吗?
Given 4 lines in 3D (represented as a couple of points), I want to find the point in space which minimizes the sum of distances between this point and every line.
I'm trying to find a way to formulate this as a Least Squares Problem, but I'm not quite sure as to how I should. I'm currently trying to use the definition of distance provided at: http://mathworld.wolfram.com/Point-LineDistance3-Dimensional.html
Any ideas?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
我在 Mathematica 中编写了一个程序来计算点坐标。
结果是一个大的代数公式。我已为您将其上传到
ideone
。如果您手头有 Mathematica,这里是程序:
结果
I made a program in Mathematica for calculating the point coordinates.
The result is a large algebraic formula. I uploaded it to
ideone
for you.Here is the program, in case you have Mathematica at hand:
RESULT