@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