Sinusoidal fitting classes for C #

I am wondering if there is a class for fitting data to a sinusoidal curve. I found an algorithm for it here , but in order to first understand and then encode, it will take some time ... Before I go this way, I wonder if the forum knows the class that has already been created for such mathematical modeling.

+7
source share
1 answer

C # does not have a long tradition of scientific computing libraries ...

My occupation was to get one of the many batch packages of numerical calculations (e.g. theirs or numerical recipes) in C / C ++ and wrap it under C #.

See also this post in Math.SE.

On the commercial side, the NMath Library has a MultiVariableFunctionFitter class that would be ideal for you.

Finally, see this Wikipedia list .

+2
source

All Articles