On 06/22, Viacheslav Lotsmanov wrote:
>
> Hello.
>
> I'm trying so sum current sample with previous one (multiplied by some
> coefficients)

        f = _ <:  _*current_sample_coef + mem*previous_sample_coef;

or

        f = _ <: _,mem : *(current_sample_coef) + *(previous_sample_coef);

or

        f(x) = x*current_sample_coef + mem(x)*previous_sample_coef;

or million other ways to do this.

Oleg.


------------------------------------------------------------------------------
Check out the vibrant tech community on one of the world's most
engaging tech sites, Slashdot.org! http://sdm.link/slashdot
_______________________________________________
Faudiostream-users mailing list
Faudiostream-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/faudiostream-users

Reply via email to