Load MIT-BIH Arrhythmia ECG database onto MATLAB

后端 未结 6 1118
情书的邮戳
情书的邮戳 2020-12-13 20:58

I am working on ECG signal processing using neural network which involves pattern recognition. As I need to collect all the data from Matlab to use it as test signal, I am

6条回答
  •  眼角桃花
    2020-12-13 21:56

    just use it

    A=input('Enter Variable: ','s');
    load(A);
    a=(val(1,:));
    b=fir1(100,[0.1,0.25],'stop');
    y2=filter(b,1,a);
    figure;
    plot(y2);
    

提交回复
热议问题