can someone please explain to me how this works. I think it is a LCCDE filter.
Mostra commenti meno recenti
n = 1;
m = 1:900;
C = wavread('ecg1.wav');
X = wavread('ecg2.wav');
for B = .4 : .1 : 1;
b = [1 -B 1];
a = [1 0 0];
y = filter(b,a,X);
1 Commento
Walter Roberson
il 22 Nov 2015
part of the loop is missing, and it is important for understanding the purpose of the code.
Risposte (0)
Categorie
Scopri di più su MATLAB in Centro assistenza e File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!