Page 1 of 1

Sonar every 10 seconds.

Posted: Mon Aug 28, 2017 12:38 am
by NonWally
In expression evaluation, I have been trying to convert Ping, periodic, 10s

y*sin(2*pi*(t%x)*f)*exp(-(t%x)*4)+wave(n)

replacing ping with Sonar

sin(2*pi*t*2000)*exp(-t*3)*(sin(2*pi*3*t)+sin(2*pi*23*t))/2

So I get Sonar every 10 seconds.
No luck. I get one sonar for the entire track. :mrgreen:

Can anyone help?

Re: Sonar every 10 seconds.

Posted: Mon Aug 28, 2017 11:23 am
by GoldWave Inc.
You just need to replace every t with (t%x) to make it periodic, then set x to 10 for 10 seconds.

Re: Sonar every 10 seconds.

Posted: Mon Aug 28, 2017 6:31 pm
by NonWally
Thank you.