kalhari abeykoon
kalhari abeykoon

Reputation: 51

curve fitting in C#

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...

Upvotes: 2

Views: 3299

Answers (2)

eulerfx
eulerfx

Reputation: 37719

The Math.NET library has what you need, including interpolation.

Upvotes: 2

Mark W
Mark W

Reputation: 3909

Take a look at the Iridium library for .net.

Upvotes: 0

Related Questions