Restrict Dwhite value numbers inside Dseq

Hi List,

is there a reason why in this example Dwhite does not restrict its values to 4, as specified?

(
{
	var a, freq, trig,z;
	z=Dwhite(1,100,4).round(1);
	a =  Dseq(z,inf);
	trig = Impulse.kr(3);
	freq = Demand.kr(trig, 0, a).poll 
	
}.play;
)

Thanks,
Jan

It should be Dseq([z], inf), shouldn’t it?

Pseq with a non-array throws an error. I would not expect Dseq with a non-array to behave sensibly either.

hjh

quite right, thank you james!