how to make a plot smooth
1 次查看(过去 30 天)
显示 更早的评论
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
2 个评论
采纳的回答
Star Strider
2015-8-11
I’m not certain what you want to do, but you might consider experimenting with polyfit and its friends.
更多回答(0 个)
另请参阅
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!