Borrar filtros
Borrar filtros

Can we filter an int16 signal using filters FIR?

2 visualizaciones (últimos 30 días)
Sangroku
Sangroku el 1 de En. de 2014
Comentada: Wayne King el 1 de En. de 2014
The coefficients resulted in the design of the filter FIR are float, and when I try to filter the signal it just can't. I tried with "conv", is there a way?
Best regards, Marcelo
  1 comentario
Jan
Jan el 1 de En. de 2014
What does "it just can't" explicitly mean? Pleas post the error message and define the input arguments exactly. The less we have to guess, the easier is an answer.

Iniciar sesión para comentar.

Respuestas (3)

Wayne King
Wayne King el 1 de En. de 2014
Jan is correct about making your post clear.
If you are using conv(), the help for conv() states that the only supported data types are:
float: double, single
So why not cast your input to double()?
conv(double(x),B)
where B are the filter coefficients.
Or better yet, use filter()
y = filter(B,1,double(x));

Jan
Jan el 1 de En. de 2014
Editada: Jan el 1 de En. de 2014
What about converting the signal to a double temporarily?
y = int16(filter(B, A, double(YourINT16Signal)));
Another idea would to use an M-version of FILTER, see e.g. Answers: Hard coded filter parameters
A C-Mex version of FILTER can be found in the file exchange and it can be adjusted to integer types. But the conversion to double seems to be the most elegant way, if it is not impeded by the memory consumption.

Sangroku
Sangroku el 1 de En. de 2014
Editada: Sangroku el 1 de En. de 2014
Sorry for not explaining well, and thank you for your help. And how do I get int16 samples from a file .wav? I tried:
>> [s1,fs] = wavread('C:\Users\user\Desktop\ex.wav');
>> s=int16(s1);
>> wavplay(s, fs)
t just noise this way
  1 comentario
Wayne King
Wayne King el 1 de En. de 2014
How is this at all related to your original post about filtering?
Have you tried reading the file with the 'native' option.
[s1,fs] = wavread('C:\Users\user\Desktop\ex.wav','native');
What datatype does that give s1?

Iniciar sesión para comentar.

Etiquetas

Community Treasure Hunt

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

Start Hunting!

Translated by