C# 中的曲线拟合
我在数组中有数据点 x 和 y。我知道这一点遵循 y=log(nx)+c 曲线。我想使用 C# 找到适合该数据点的 n 值。有没有什么图书馆或者简单的方法可以找到它,
谢谢...
I have a data points x and y in an array. And I know this points goes y=log(nx)+c curve. I want to find the value of n that is fitted to that data points using c#. Are there any library or easy way to find it
thanks...
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
Math.NET 库有你需要的,包括插值。
The Math.NET library has what you need, including interpolation.
查看 .net 的 Iridium 库。
Take a look at the Iridium library for .net.