I am trying to find a fitting curve as described below. MATLAB's polyfit
does not work in my case.
Known parameters: x
and y
, and the fitting curve y_fit = a * (x_fit) .^ n
(here, n may not be an integer).
I need to find a
and n
.
I am trying to find a fitting curve as described below. MATLAB's polyfit
does not work in my case.
Known parameters: x
and y
, and the fitting curve y_fit = a * (x_fit) .^ n
(here, n may not be an integer).
I need to find a
and n
.