can someone please explain to me how this works. I think it is a LCCDE filter.
6 visualizaciones (últimos 30 días)
Mostrar comentarios más antiguos
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 comentario
Walter Roberson
el 22 de Nov. de 2015
part of the loop is missing, and it is important for understanding the purpose of the code.
Respuestas (0)
Ver también
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!