[Csnd] Yes/No, take two
Date | 2014-07-03 00:29 |
From | David Mooney |
Subject | [Csnd] Yes/No, take two |
Gosh---Somehow my message got sent prematurely! Take two: Looking for a way to make a simple Yes/No [1 or 0] random choice within a loop_lt as part of the selection process for values for event_i. Something along these lines:-blah -blah |
Date | 2014-07-03 00:37 |
From | Hlöðver Sigurðsson |
Subject | Re: [Csnd] Yes/No, take two |
kmetro phasor rnd(10) krandom = abs(kmetro)*2 if(krandom == 0) then blah elseif(krandom == 1) then blah elseif(krandom == 2) then
blah endif I could extend it with schedkwhen kmetro phasor rnd(10) krandom = abs(kmetro)*2 ktrig1 = (krandom == 0 ? 1 : 0) ktrig2 = (krandom == 1 ? 1 : 0) ktrig3 = (krandom == 2 ? 1 : 0) schedkwhen ktrig1, mintim, maxnum...etc...;event for externel instrument schedkwhen ktrig2 ; external instument 2.... 2014-07-02 23:29 GMT+00:00 David Mooney <dmooney023@gmail.com>:
|
Date | 2014-07-03 00:51 |
From | Hlöðver Sigurðsson |
Subject | Re: [Csnd] Yes/No, take two |
When I think about it, changing random phase speed with rnd may give more weird results than using randi, interpolated random. But this way of getting random output is just one way of many to get random values.
2014-07-02 23:37 GMT+00:00 Hlöðver Sigurðsson <hlolli@gmail.com>:
|