faust icon indicating copy to clipboard operation
faust copied to clipboard

Make rdtable/rwtable size parameter behaves like the @ primitive

Open sletz opened this issue 4 years ago • 0 comments

import("stdfaust.lib");
S = max(1, min(192000, ma.SR));
//S = 192000;
process = rwtable(S, .0, ba.period(S), os.osc(1000), ba.period(S));

gives: ERROR : checkInt failed for type RKIVN [1.000000, 192000.000000]

It would be interesting to allow S be bounded [min:max] signal, like the @ primitive.

sletz avatar Apr 12 '21 15:04 sletz