Re: [Faudiostream-users] How to place values in lists?

2022-08-17 Thread Robin Gareus
On 8/17/22 22:12, Hermann Meyer wrote: > > were you could put anything you like into the filterbank, when defined, > while set frequency at runtime. > > process= _: geq: ( dist5s , dist4s , dist3s, dist2s, dist1s) Thanks for the confirmation that what I'm currently doing is not far off the

Re: [Faudiostream-users] How to place values in lists?

2022-08-17 Thread Hermann Meyer
Am 17.08.22 um 18:10 schrieb Robin Gareus: Hello Faust community, I'm brushing up my FAUST skills. It's been over a decade and it's amazing to see how far things have grown. Well now, I just ran into an issue: How can I place signal primitive into a list? e.g. use _,_ as list arguments

Re: [Faudiostream-users] How to place values in lists?

2022-08-17 Thread Yann Orlarey
Hi Robin, Welcome back! As written, analyzer needs a list of frequencies as a second argument. These frequencies can be numbers or more complex circuits, but they have to be number-like, i.e. with no input and only one output. So you can't use the identity function _ as a frequency (because it

Re: [Faudiostream-users] How to place values in lists?

2022-08-17 Thread Robin Gareus
Hi Klaus, Thanks for the reply. If I understand correctly, waveform is a read-only primitive, and only work for constant data. Am I missing something? Do you have an example? I suppose a rwtable could be abused as intermediate. But it seems like overkill, for just getting arguments from a

Re: [Faudiostream-users] How to place values in lists?

2022-08-17 Thread Klaus Scheuermann
I did a list with wavform once https://faustdoc.grame.fr/manual/syntax/#waveform-primitive Hope it helps... > On 17. Aug 2022, at 18:10, Robin Gareus wrote: > > Hello Faust community, > > I'm brushing up my FAUST skills. It's been over a decade and it's > amazing to see how far things have

[Faudiostream-users] How to place values in lists?

2022-08-17 Thread Robin Gareus
Hello Faust community, I'm brushing up my FAUST skills. It's been over a decade and it's amazing to see how far things have grown. Well now, I just ran into an issue: How can I place signal primitive into a list? e.g. use _,_ as list arguments (_,_) for `an.analyzer(3, HERE)` If I