Update distortion_filter.m

This commit is contained in:
Jason Liang 2021-12-12 22:10:47 -08:00 committed by GitHub
parent 98ca51ea25
commit 9e54fe6f2e
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -15,7 +15,7 @@ function y = distortion_filter(input, fs, LOW, MED, HIGH)
outputW = fftshift(fft(input));
for i = 1:length(outputW)
if ((LOW < abs(F(n))) && HIGH > abs(F(n)))
if ((LOW < abs(f(i))) && HIGH > abs(f(i)))
outputW(i) = outputW(i) / LOW;
end
end