How to fit curve to see the scaling

2 visualizaciones (últimos 30 días)
Auryn_
Auryn_ el 9 de En. de 2019
Comentada: A_V_G el 24 de En. de 2019
Hi,
I would like to see the scaling (\alpha) of my curve f(x,y): x^\alpha
Thus, I need to fit my data to a curve but I cannot use the function polyfit as the value of \alpha could be any value between 0 and 2, and I receive the error message:
Index in position 2 is invalid. Array indices must be positive integers or logical values.
Is there any direct method to do this in Matlab?
Thanks in advance!
  4 comentarios
Rik
Rik el 9 de En. de 2019
What is the exact code that you are currently using? Because you should be fitting your x-y data to something like this
fitfun=@(x,alpha) x.^alpha;
The error doesn't look like you are doing a curve fit.
Auryn_
Auryn_ el 9 de En. de 2019
I just did this:
p=polyfit(x,y,1.5);
f1 = polyval(p,x);
plot(x,f1,'r--')
which is obviously wrong.
How can I plot the result of the fitfun function you mentioned?

Iniciar sesión para comentar.

Respuesta aceptada

Rik
Rik el 9 de En. de 2019
That code doesn't work, because your data is not a polynomial. It doesn't make sense to fit to a polynomial if your data is not. The code below will generate some example data, perform the fit, and plot the result.
In this case you could also make an estimation of alpha by taking the x-base log of y. You'll probably have to do that in a loop.
%generate example data
x=linspace(0,20,30);
noise=(rand(size(x))-0.5)*5;
y=x.^1.7 + noise;
%define function
fitfun=@(alpha,x) x.^alpha;
%perform fit
fitobject = fit(x(:),y(:),fitfun,'StartPoint',1);
fitted_alpha=fitobject.alpha;
%plot in a clean figure
figure(1),clf(1)
plot(x,y,'*b',x,fitfun(fitted_alpha,x),'r')
  6 comentarios
Rik
Rik el 24 de En. de 2019
The second output of the fit functions returns goodness-of-fit parameters, as you can read in the doc. I expect the sse is closest to what you mean.
A_V_G
A_V_G el 24 de En. de 2019
Thanks!

Iniciar sesión para comentar.

Más respuestas (0)

Categorías

Más información sobre Fit Postprocessing en Help Center y File Exchange.

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by