Borrar filtros
Borrar filtros

Basic fitting MATLAB: Fitting the data with approximate curve.

15 visualizaciones (últimos 30 días)
I have plotted X-Y data using MATLAB (image on left in fig.), I have total 19300 data points which I got from experiments. I have used tools like "spline interpolant", "shape-preserving interpolat" etc to do basic fitting, but it does not satisfy my requirement. What I want is smooth curve which should look like red curve shown in figure (right fig.). Further, I also want to get information out of red curve, for example slope of the curve at various points on red curve. Can you please suggest me an appropriate tool for these two purposes. Thank you.

Respuesta aceptada

Yogesh Badhe
Yogesh Badhe el 28 de Sept. de 2015
Use "curve fitting" app, upload the data points and use smoothing curve option.

Más respuestas (1)

Chandramouli Gnanasambandham
Chandramouli Gnanasambandham el 22 de Sept. de 2015
Use the MATLAB built in function filter. vary the parameter window size to get better smoothness.
windowSize = 70;
b = (1/windowSize)*ones(1,windowSize);
a= 1;
out = filter(b,a,ydata);
plot(xdata,ydata,'.')
hold on
grid on
plot(xdata,out,'r','LineWidth',2);
hold off
hope this helps :)

Categorías

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

Productos

Community Treasure Hunt

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

Start Hunting!

Translated by