Continue to Site

Welcome to EDAboard.com

Welcome to our site! EDAboard.com is an international Electronics Discussion Forum focused on EDA software, circuits, schematics, books, theory, papers, asic, pld, 8051, DSP, Network, RF, Analog Design, PCB, Service Manuals... and a whole lot more! To participate you need to register. Registration is free. Click here to register now.

Matlab - filtering dtmf-signals through a filterbank

Status
Not open for further replies.

evie

Newbie level 2
Joined
Mar 15, 2009
Messages
2
Helped
0
Reputation
0
Reaction score
0
Trophy points
1,281
Activity points
1,297
Matlab DTMF

I need to make a function for filtering dtmf-signals through a filterbank and detecting the frequencies and then figuring out which keys they correspond to.

Pseudo-code-ish:
function key=detect(signal)

detect=0; %sets detect to 0 before checking
for i=1:length(filter_bank)
y=conv(signal,filter_bank(i));
%now, if i've understood it correctly, this should produce an output if the signal contains a frequency that can pass through the filter.
%if y is somethingsomething, detect=1

is that possible?

I don't want to produce the output signal, only detect its response :)
 

Status
Not open for further replies.

Part and Inventory Search

Welcome to EDABoard.com

Sponsor

Back
Top