How to apply a Low pass filter on a set of data from Excel

37 views (last 30 days)
Hello, I'm wondering how can you apply a low pass filter at a sample rate at 10 Hz on these data? Assume Max Cur = X and Max Vol = Y
Thank you for your time

Answers (1)

Star Strider
Star Strider on 7 Feb 2021
First, import the data using readmatrix or readtable, and determine the sampling frequency (it must have regular sampling intervals).
Then if you have the Signal Processing Toolbox and R2018a or later, use the lowpass function.
  2 Comments
Hui Puong
Hui Puong on 8 Feb 2021
Currently, I dont have the signal processing toolbox. Is there like a way around to do it?
Thank you
Star Strider
Star Strider on 8 Feb 2021
You would have to write your own code to create the filter coefficients. You could then use the filter function, however that is not ideal because it does not correct for phase distortion/delay in the filtered signal.

Sign in to comment.

Community Treasure Hunt

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

Start Hunting!