C# 的正弦拟合类
我想知道是否有一个类可以将数据拟合到正弦曲线。我在这里找到了一个算法但首先理解然后编码需要一些时间......在我走这条路之前,我想知道论坛是否知道已经为此类数学建模创建的类。
I am wondering if there is a class for fitting data to a sine curve. I found an algorithm for it here but it would take some time to first understand and then code... Before I go down that road I am wondering if the forum knows of a class that is already created for such mathematical modeling.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
C# 没有悠久的科学计算库传统...
我的做法是获取众多数值计算例程包之一(例如 它们,或数值食谱)用 C/C++ 编写,并将其包装在 C# 下。
另请参阅这篇 Math.SE 帖子。
在商业方面,NMath 库 有一个
MultiVariableFunctionFitter
类这对你来说是完美的。最后,请参阅此维基百科列表。
C# does not have a long tradition of scientific computing libraries...
My take would be to get one of the numerous numerical computation routine packages (like on of them, or the Numerical Recipes) in C/C++, and wrap it under C#.
See also this Math.SE post.
On the commercial side, NMath library has a
MultiVariableFunctionFitter
class that is would be perfect for you.Finally, see this Wikipedia list.