2 summary:: Standard map chaotic generator
3 categories:: UGens>Generators>Chaotic
4 related:: Classes/StandardL
7 A non-interpolating sound generator based on the difference equations:
10 x[n+1] = (x[n] + y[n+1]) % 2pi
11 y[n+1] = (y[n] + k * sin(x[n])) % 2pi
13 warning:: revise formulae conversion to c like code ::
15 The standard map is an area preserving map of a cylinder discovered by the plasma physicist Boris Chirikov.
20 Iteration frequency in Hertz
31 { StandardN.ar(MouseX.kr(20, SampleRate.ir)) * 0.3 }.play(s);
35 // mouse-controlled param
36 { StandardN.ar(SampleRate.ir/2, MouseX.kr(0.9,4)) * 0.3 }.play(s);
40 // as a frequency control
41 { SinOsc.ar(StandardN.ar(40, MouseX.kr(0.9,4))*800+900)*0.4 }.play(s);