Pshufn Pshuf with continuing permutations 


Part of: miSCellaneous


Inherits from: Pn


Variation of Pshuf which scrambles the list with every repeat. 


See also: Pshuf, PLshuf, PLshufn, PLx suite



Creation / Class Methods


*new (list, repeats)

Creates a new Pshufn object.

list - list to be scrambled.

repeats - number of permutations. Defaults to 1.


Examples


(

s = Server.local;

Server.default = s;

s.boot;

)

(

p = Pbind(

\midinote, Pshufn((70..73), inf),

\dur, 0.2

);

)


x = p.play;


x.stop;