MATLAB 稳健拟合的 Java 或 C 等效项
MATLAB 有一个强大的 robustfit
函数,可以解决用线性回归拟合排除异常值的问题。是否有用 Java 或 C(或可以采用的 X 语言)编写的类似内容?
MATLAB has a magnificent robustfit
function that solves the problem of excluding outliers with linear regression fitting. Is there anything similar written in Java or C (or in language X that could be adopted)?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
数值配方具有稳健拟合的实现。它是用 C/C++ 编写的,因此您应该能够轻松地将其移植到 Java。
Numerical Recipes has an implementation of robust fit. It's written in C/C++, so you should be able to port it over to Java without too much trouble.
您是否在寻找算法、数学库或从 Java 调用 matlab 的方法?
Are you looking for an algorithm, a math library or a way to call matlab from java?