Anda di halaman 1dari 5

LAPORAN PRAKTIKUM BAB III

PERANCANGAN FILTER INFINITE IMPULSE RESPONSE

ANNISA HAFIZATUL RAIHAN (062001700010)

FAKULTAS TEKNOLOGI INDUSTRI


JURUSAN TEKNIK ELEKTRO
UNIVERSITAS TRISAKTI
JAKARTA
TUGAS
1. Buatlah script matlab serta tampilkan responnya untuk filter
dengan spesifikasi berikut :
 Butterworth lowpass filter dengan normalized cutoff frequency 0,6 ;
orde 10
fc = 600;
fs = 2000;
[b,a] = butter (10,fc/(fs/2));
freqz (b,a)
 Butterworth bandstop filter berorde 13, cutoff frequency 100 Hz, dan
frekuensi sampling 1600 Hz
fs=1600;
[b,a]=butter(3,[90 110]/(fs/2), 'stop')
freqz(b,a,2^13,'half',fs)
 Chebysev low pass filter dengan ripple pada pass band, ripple 60,
orde 10, dan normalized frequency 0,7

[a,b] = cheby1 (10, 60, [0.7], 'low');


freqz (a,b)
 Chebysev high pass filter dengan ripple pada stop band, ripple 60,
orde 3, dan normalized frequency 0,5
[a,b] = cheby1 (3, 60, [0.5], 'high');
freqz (a,b)

 Jelaskan apa yang terjadi jika orde ditambah


Jika pada chebychev ketika orde di tambah, maka ripple nya
bertambah juga
Jika pada butterworth maka maghnitude (dB) nya terdapat ripple dan
phase (degree) juga bergeser

Anda mungkin juga menyukai