Csound Csound-dev Csound-tekno Search About

[Csnd] Yes/No, take two

Date2014-07-03 00:29
FromDavid 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:

ival [selection opcode]
if (ival==1) then
  blah blah
else
   -blah -blah
endif

There has to be some simple direct way to do this but I can't find it. What I've done in the past is fill a table with randomly generated 0s and 1s, then just step through the table. Works fine but seems like a long way around. I'll appreciate any suggestions.

--David Mooney

--
Opaque Melodies
http://opaquemelodies.com

Date2014-07-03 00:37
FromHlöðver Sigurðsson
SubjectRe: [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>:
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:

ival [selection opcode]
if (ival==1) then
  blah blah
else
   -blah -blah
endif

There has to be some simple direct way to do this but I can't find it. What I've done in the past is fill a table with randomly generated 0s and 1s, then just step through the table. Works fine but seems like a long way around. I'll appreciate any suggestions.

--David Mooney

--
Opaque Melodies
http://opaquemelodies.com


Date2014-07-03 00:51
FromHlöðver Sigurðsson
SubjectRe: [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>:
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>:

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:

ival [selection opcode]
if (ival==1) then
  blah blah
else
   -blah -blah
endif

There has to be some simple direct way to do this but I can't find it. What I've done in the past is fill a table with randomly generated 0s and 1s, then just step through the table. Works fine but seems like a long way around. I'll appreciate any suggestions.

--David Mooney

--
Opaque Melodies
http://opaquemelodies.com