Sign in

username:

password:



Not a member?

Search echocancel



Search tips

Subscribe to echocancel



echocancel by Keywords

AEC | Double Talk | ERLE | G.168 | LEC | NLMS

Ads

Discussion Groups

Discussion Groups | Echo Cancellation | phase-reversed ANSam tone

Technical discussions about echo cancellation and adaptive filtering in general.

  

Post a new Thread

phase-reversed ANSam tone - Sheng Mou - Aug 29 17:33:00 2001



Hello All,

Does anyone know where I can find the tool/data of the modified answer tone
(ANSam) with phase-reversal specified in ITU-T V.8? I'm currently working
on a tone disabler which is a part of the echo canceller and I need the
ANSam to test it.

Thanks,
Sheng Mou

_________________________________________________________________
Get your FREE download of MSN Explorer at http://explorer.msn.com/intl.asp





(You need to be a member of echocancel -- send a blank email to echocancel-subscribe@yahoogroups.com )

Re: phase-reversed ANSam tone - Author Unknown - Aug 30 14:47:00 2001

Sheng Mou:

It is very easy to produce the necessary data.
You can use Mathcad, Matlab or a tool like CoolEdit
to create a number of different signals quickly.
The specs for ANSam are 2100 Hz with 20 % AM
modulation at 15 Hz. The phase reversals should
occur at 450 ms intervals. The standard only
guarantees you will see two reversals at the detector.

ansam(n) = (1-0.2*sin(2*PI*n*15/FS))*sin(2*PI*2100*n/FS
+ PI*if(mod(int(n/(0.450*FS)),2))

If you are really stuck, I can make these signals
for you and send them directly to you as attachments
to your email. You need to specify sampling frequency
you expect to use and the deviations you want to
test over. Most programs will absorb text formatted
data. You can add noise yourself to test against
various SNRs and adjust the levels to account for
sensitivity.

Good luck
David Shaw

--- In echocancel@y..., "Sheng Mou" <sheng_mou@h...> wrote:
> Hello All,
>
> Does anyone know where I can find the tool/data of the modified
answer tone
> (ANSam) with phase-reversal specified in ITU-T V.8? I'm currently
working
> on a tone disabler which is a part of the echo canceller and I need
the
> ANSam to test it.
>
> Thanks,
> Sheng Mou
>
> _________________________________________________________________
> Get your FREE download of MSN Explorer at
http://explorer.msn.com/intl.asp




(You need to be a member of echocancel -- send a blank email to echocancel-subscribe@yahoogroups.com )

Re: Re: phase-reversed ANSam tone - maurice givens - Aug 30 17:52:00 2001

If you want the Matlab code, it is

k = (0:1/FS:(T/1000)-1/FS)';
Y = (1 - 0.2*sin(2*pi*k*15)).*sin(2*pi*2100*k +
pi*(mod(fix(k/0.450),2)));

T = length of signal in milliseconds, FS is sample rate in Hertz wrote:
>
> Sheng Mou:
>
> It is very easy to produce the necessary data.
> You can use Mathcad, Matlab or a tool like CoolEdit
> to create a number of different signals quickly.
> The specs for ANSam are 2100 Hz with 20 % AM
> modulation at 15 Hz. The phase reversals should
> occur at 450 ms intervals. The standard only
> guarantees you will see two reversals at the detector.
>
> ansam(n) = (1-0.2*sin(2*PI*n*15/FS))*sin(2*PI*2100*n/FS
> + PI*if(mod(int(n/(0.450*FS)),2))




(You need to be a member of echocancel -- send a blank email to echocancel-subscribe@yahoogroups.com )