Basic fitting MATLAB: Fitting the data with approximate curve.
14 vues (au cours des 30 derniers jours)
Afficher commentaires plus anciens
Yogesh Badhe
le 21 Sep 2015
Réponse apportée : Yogesh Badhe
le 28 Sep 2015
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.
0 commentaires
Réponse acceptée
Plus de réponses (1)
Chandramouli Gnanasambandham
le 22 Sep 2015
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 :)
1 commentaire
Chandramouli Gnanasambandham
le 22 Sep 2015
for the slope calculation at every data point try using the 'diff' command
Voir également
Catégories
En savoir plus sur Curve Fitting Toolbox dans Help Center et File Exchange
Produits
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!