Clear Filters
Clear Filters

how to make a plot smooth

2 views (last 30 days)
Mayank Lakhani
Mayank Lakhani on 11 Aug 2015
Commented: Star Strider on 12 Aug 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
  2 Comments
Adam
Adam on 11 Aug 2015
Your plot seems to bear no relation to the code that comes with it.
Mayank Lakhani
Mayank Lakhani on 11 Aug 2015
Hey, Adam sorry for my mistake.

Sign in to comment.

Accepted Answer

Star Strider
Star Strider on 11 Aug 2015
I’m not certain what you want to do, but you might consider experimenting with polyfit and its friends.
  4 Comments
Mayank Lakhani
Mayank Lakhani on 12 Aug 2015
Hey Star Strider, thanks it is working :)
Star Strider
Star Strider on 12 Aug 2015
My pleasure!

Sign in to comment.

More Answers (0)

Tags

Community Treasure Hunt

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

Start Hunting!