3D 多项式回归
我需要一些指导来编写 3 维点的多项式回归例程(即找到适合一定数量的 3D 点的 X 阶多项式的系数)。
我找到了二维多项式回归的代码,但是,我需要考虑第三维。
我正在寻找代码示例和/或解释。
I need some pointers for writing a polynomial regression routine for 3-dimensional points (i.e. find the coefficients of an X order polynomial that is fitted to a certain number of 3D points).
I've found code for 2D polynomial regression, however, I need to account for a 3rd dimension.
I'm looking for code examples and/or explanations.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
MATLAB 函数 polyfit 应该很容易做到这一点。
http://www.mathworks.de/de/help/matlab/ref /polyfit.html
您可以使用 MATLAB 吗?
The MATLAB function polyfit should readily do it.
http://www.mathworks.de/de/help/matlab/ref/polyfit.html
Is MATLAB available to you?