Sinusoidal fitting classes for c#

為{幸葍}努か 提交于 2020-01-02 02:43:20

问题


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.


回答1:


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.



来源:https://stackoverflow.com/questions/6033874/sinusoidal-fitting-classes-for-c-sharp

标签
易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!