当前位置:网站首页>DTMF dual tone multi frequency signal simulation demonstration system

DTMF dual tone multi frequency signal simulation demonstration system

2022-04-23 20:08:00 Matlab research studio

1 brief introduction

Introduce DTMF Principle of signal generation and detection , Use Matlab Analog DTMF signal (DTMF) As a kind of user signaling, it is used in the signal transmission process between the telephone and the switch in the telephone system . stay Matlab The simulation is helpful to the optimization design of its specific system and signal detection in low noise environment .​

2 Part of the code

function[t,st]=lpf(f,sf,B)%  low pass filter df=f(2)-f(1);fN=length(f);ym=zeros(1,fN);xm=floor(B/df);xm_shift=[-xm:xm-1]+floor(fN/2);ym(xm_shift)=1;yf=ym.*sf;[t,st]=F2T(f,yf);

3 Simulation results

4 reference

[1] Zhang Yaqi . be based on Matlab Analog multi tone signal [J]. Information and computers : Theory Edition , 2013(6):2.

About bloggers : Good at intelligent optimization algorithms 、 Neural networks predict 、 signal processing 、 Cellular automata 、 The image processing 、 Path planning 、 UAV and other fields Matlab Simulation , relevant matlab Code problems can be exchanged by private letter .

Some theories cite network literature , If there is infringement, contact the blogger to delete .

版权声明
本文为[Matlab research studio]所创,转载请带上原文链接,感谢
https://yzsam.com/2022/04/202204232006078314.html