How to plot 'smooth' cell array graphs
1 vue (au cours des 30 derniers jours)
Afficher commentaires plus anciens
Jonathan Cheong
le 15 Mar 2021
Réponse apportée : Asvin Kumar
le 18 Mar 2021
Hello, I would like to 'smooth' out the curves of these plots and plot it on top of the exisitng 'noisy' graph.
for ci= 1:length(datecell)
figure,plot(datecell{ci},smcell{ci});
end
grid on;
Where it should look like the red curve:
I have tried using 'rmoutliers' or 'smooth' functions but they do not work, possibly due to bad coding.
Many thanks in advance.
0 commentaires
Réponse acceptée
Asvin Kumar
le 18 Mar 2021
You're looking for the fit function from the Curve Fitting Toolbox. There are some great examples on the doc page that should help you get started.
0 commentaires
Plus de réponses (0)
Voir également
Catégories
En savoir plus sur Curve Fitting Toolbox dans Help Center et File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!