如何在VB.net中找到给定数据集(x,y)的曲线方程?
我是 VB.NET 的新手,我正在尝试在 VB.NET 中编写代码,以便在给定数据点时找到方程。例如(1,5),(2,6)等。
我需要从给定的点找到一个方程(不一定总是线性的)。
中提供的帮助
我尝试使用如何计算趋势线 图表?
但无法弄清楚如何获得方程。
任何帮助将不胜感激。 提前致谢。
I am new to VB.NET and I am trying to write code in vb.net to find a equation when data points are given. For example (1,5),(2,6) etc.
I need to find a equation(not necessarily always linear) from the given points.
I tried to use the help given in
How do I calculate a trendline for a graph?
but couldn't figure out how to get equation.
Any help will be highly appreciated.
Thanks in advance.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您正在寻找的称为 插值
基本上它是数值分析中的一个领域,它可以帮助您创建数据点的多项式表示。
What you're looking for is called Interpolation
Basically it's a field in numerical analysis, and it helps you create a polynomial representation of the data points.