Merge branch 'master' of https://scm.cri.ensmp.fr/git/Faustine
[Faustine.git] / interpretor / preprocessor / faust-0.9.47mr3 / documentation / faust-quick-reference-src / illustrations / multiband.dsp
1
2 bandfilter = library("bandfilter.dsp").bandfilter;
3
4 process = seq(i, 10,
5 vgroup("band %i",
6 bandfilter(1000*(1+i))
7 )
8 );
9