aboutsummaryrefslogtreecommitdiffstats
path: root/lab5/RTDSP/Matlab/elliptical.m
diff options
context:
space:
mode:
authorymherklotz <ymherklotz@gmail.com>2018-02-27 10:15:32 +0000
committerymherklotz <ymherklotz@gmail.com>2018-02-27 10:15:32 +0000
commitfc9d835a3db90d11ecf6f0a072700c7c508fc2a2 (patch)
tree05c99d663f457de5f9f5c92a55994850df0e5753 /lab5/RTDSP/Matlab/elliptical.m
parent9b4767c534111c4a261bc619316cbfd9c199517e (diff)
downloadNoiseSilencer-fc9d835a3db90d11ecf6f0a072700c7c508fc2a2.tar.gz
NoiseSilencer-fc9d835a3db90d11ecf6f0a072700c7c508fc2a2.zip
Removed debug and fixed lab5 project
Diffstat (limited to 'lab5/RTDSP/Matlab/elliptical.m')
-rw-r--r--lab5/RTDSP/Matlab/elliptical.m10
1 files changed, 0 insertions, 10 deletions
diff --git a/lab5/RTDSP/Matlab/elliptical.m b/lab5/RTDSP/Matlab/elliptical.m
deleted file mode 100644
index 7b603c7..0000000
--- a/lab5/RTDSP/Matlab/elliptical.m
+++ /dev/null
@@ -1,10 +0,0 @@
-function [b,a] = elliptical (Fs)
-
-order = 4; % Order of the bandpass filter
-startband = 270*2/Fs; % Normalised startband frequency
-stopband = 450*2/Fs; % Normalised stopband frequency
-ripple = 0.3; % The passband ripple (in dB)
-stopband_atten = 20; % The stopband attenuation (in dB)
-
-% Call the eliptical filter function
-[b,a] = ellip(order/2,ripple,stopband_atten,[startband, stopband]);