Borrar filtros
Borrar filtros

HOW TO DESIGN A BANDPASS FILTER

1 visualización (últimos 30 días)
raj
raj el 30 de Mzo. de 2012
I need to design a bandpass filter with sampling rate of 10kHz and bandpass of 0 to 1kHz and then insert a signal my signal in the filter can any one give the syntax for it

Respuesta aceptada

Wayne King
Wayne King el 30 de Mzo. de 2012
You need a lowpass filter. You can use fdesign.lowpass. There are many possible specification strings. You have not stated all your specs, like how many dB of attenuation you wish to have. I'll create an example with 50 dB and obtain both an FIR filter (Hd1) and an IIR filter(Hd2)
d = fdesign.lowpass('Fp,Fst,Ap,Ast',1000,1200,0.5,50,1e4);
Hd1 = design(d,'equiripple');
Hd2 = design(d,'butter');
t = 0:1e-4:1;
x = cos(2*pi*500*t)+0.5*cos(2*pi*2000*t)+randn(size(t));
out = filter(Hd1,x);
% or out = filter(Hd2,x);
  3 comentarios
Rob Graessle
Rob Graessle el 30 de Mzo. de 2012
Because the passband begins at 0 Hz, that makes it a lowpass filter.
Wayne King
Wayne King el 30 de Mzo. de 2012
Exactly what Rob said.

Iniciar sesión para comentar.

Más respuestas (0)

Categorías

Más información sobre Digital and Analog Filters en Help Center y File Exchange.

Productos

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by