how to make a plot smooth
1 visualizzazione (ultimi 30 giorni)
Mostra commenti meno recenti
Mayank Lakhani
il 11 Ago 2015
Commentato: Star Strider
il 12 Ago 2015
How to smooth a plot?
len1 = [25, 250, 500, 750, 1000];
for k1 = 1:length(len1)
standard_deviation1(k1) = std(resdphs(1:5000, len1(k1)));
end
f10 = [110, 100, 90, 80, 70];
figure(3),plot(f10, standard_deviation1);xlabel('frequency'); ylabel('standarddev');
grid
![](https://www.mathworks.com/matlabcentral/answers/uploaded_files/147958/image.jpeg)
2 Commenti
Risposta accettata
Star Strider
il 11 Ago 2015
I’m not certain what you want to do, but you might consider experimenting with polyfit and its friends.
4 Commenti
Più risposte (0)
Vedere anche
Categorie
Scopri di più su 2-D and 3-D Plots in Help Center e File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!