MATLAB: How to find the frequency of this signal

digital signal processingsignal processing

how can i find the frequency and period of this signal? Thank you

Best Answer

The obvious solution is to use the fft (link) function. There is a low-frequency baseline drift and a high-frequency signal in that appear to be spikes (EKG, perhaps).
To find the peaks and the associated frequencies, use the findpeaks function.
See this Answer (link) for an illustration.