How to make a softer plot using a moving average every ''x'' skips?
6 views (last 30 days)
Show older comments
I have a table from excel from values every 15 minutes from a whole year, the excel table only have 2 columns: DATETIME and VALUE. But when I plot the data, the shape of the plot has a very sharp form. The simplest solutios to make the plot softer, I think, is to calculate the mean for every hour (4 values) and plot them. After searching I found the function tsmovavg, but this function don't do the skip every 4 values, instead of that, can calculate the mean of the last 4 positions of the vector. How can I do to make my script possible?.If you have and example of something very similar to this I would be very greatful to see it.
0 Comments
Answers (2)
Benjamin Großmann
on 24 Apr 2018
If you have signal processing toolbox than you can use moving average filter or more advanced filtering techniques as described here
If not, than it is also easy to smooth this signal using methods and functions described here e.g.: movemean or smoothdata .
0 Comments
See Also
Categories
Find more on Data Preprocessing in Help Center and File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!