Quantcast
Channel: Math.NET Numerics - Math.NET
Viewing all articles
Browse latest Browse all 224

Curve fitting: Power

$
0
0

@EricOuellet wrote:

I’m looking to find a way to get curve fitting of type (Power) like in Excel Trending.

Actually, I found linear and polynomial as :

Tuple<double, double> line = Fit.Line(xdata, ydata);
double[] poly2 = Fit.Polynomial(xdata, ydata, 2);

Also cdnet answered how to do Exponential in Exponential Fit

But, I’m not sure how to find “Power” curve fitting? Anybody has an idea?

Posts: 5

Participants: 2

Read full topic


Viewing all articles
Browse latest Browse all 224

Trending Articles