On 02/27, David Minnix wrote:
>
> That's the line that I thought might be the problem. Is there any way to
> put those modulators in terms of each other?
>
> I would like to have the FM modulator architecture to be decided by the
> user similar to fm8.

Well, I have no idea what are you trying to do nor I know what fm8 is, but
I guess you can rewrite this code using letrec.

So if you need to do something like

        x = expr1(y');
        y = expr2(x');

you can write

        x, y letrec {
                'x = expr1(y);
                'y = expr2(x);
        }

and this should work.

Oleg.



_______________________________________________
Faudiostream-users mailing list
Faudiostream-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/faudiostream-users

Reply via email to