心跳分析

时间:2016-06-13 19:36:32

标签: matlab signal-processing

我正在分析心跳声,我还不熟悉数字信号处理。

[x,fs]=audioread('C:\Users\Sheraz\Downloads\Music\mp3 Sound Effect_ heartbeat pulse slow.mp3');
    left=x(:,1);
    plot(left)
    v = fft(left);
    mag = abs(v);
    figure
    plot(mag)

声音信号的图是: enter image description here

该信号的fft幅度图是: enter image description here

fft的情节很奇怪,我不知道为什么。而我无法提取不同的东西,如快速或慢速等。
请帮我解决我的问题。

0 个答案:

没有答案