计算超平面的复杂度等级

发布于 2024-12-29 09:06:20 字数 167 浏览 3 评论 0原文

我关心以下算法:

作为输入,它需要直角坐标系中 n 维空间中的 n 个点。这 n 个点定义了一个 n-1 维超平面(我们可以忽略它们不定义的无穷小概率)。作为输出,我想要这个超平面的方程。

对于这个问题是否有一个已知的算法 - 或者至少有一个已知的复杂度类别?

提前致谢。

I am concerned with the following algorithm:

As input, it takes n points in n dimensional space in rectangular coordinates. These n points define an n-1 dimensional hyperplane (we can ignore the infintesimal probability that they don't). As output, I would like the equation of this hyperplane.

Is there a known algorithm - or at least a known complexity class - for this problem?

Thanks in advance.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

爱的十字路口 2025-01-05 09:06:20

您要查找的方程

A_1 x_1 + A_2 x_2 + ... + A_n x_n + C = 0

适用于一些系数 A_1C,而 x_i 是平面上点的直角坐标。代入输入点,您就得到了一组可以求解的 n 联立方程(最多可达比例因子)。

The equation you're looking for is

A_1 x_1 + A_2 x_2 + ... + A_n x_n + C = 0

for some coefficients A_1 and C and for the x_i being the rectangular coordinates of a point on the plane. Substitute in the input points and you've got a set of n simultaneous equations which you can solve (up to a scale factor).

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文