[Csnd] Questions about "If conditions"
Date | 2014-04-12 13:24 |
From | Askwazzup |
Subject | [Csnd] Questions about "If conditions" |
Is there a way to write this in csound: if gksumf == (1 || 3 || 5 || 6 || 8 || 10 || 12) then outs achord, achord endif Or do i have to use the long way, or some algorithmic trickery? -- View this message in context: http://csound.1045644.n5.nabble.com/Questions-about-If-conditions-tp5734176.html Sent from the Csound - General mailing list archive at Nabble.com. |
Date | 2014-04-12 13:32 |
From | Hlöðver Sigurðsson |
Subject | Re: [Csnd] Questions about "If conditions" |
if (gksum == 1) || (gksum == 3) || (gksum == 5) ...etc... this way of writing it should work. 2014-04-12 12:24 GMT+00:00 Askwazzup <aistiskaikaris@mail.com>: Is there a way to write this in csound: Hlöðver Sigurðsson |
Date | 2014-04-12 13:36 |
From | Askwazzup |
Subject | [Csnd] Re: Questions about "If conditions" |
Thanks, seems to work ok. Though i wonder if one had a very long condition line, this might be a problem? -- View this message in context: http://csound.1045644.n5.nabble.com/Questions-about-If-conditions-tp5734176p5734178.html Sent from the Csound - General mailing list archive at Nabble.com. |
Date | 2014-04-12 13:39 |
From | Rory Walsh |
Subject | Re: [Csnd] Re: Questions about "If conditions" |
I don't think so. Conditional equations like this can be as long as you like. Technically it may fail if you use extraordinarily high number of chars but I doubt you would ever hit that extreme. On 12 April 2014 13:36, Askwazzup |
Date | 2014-04-12 13:42 |
From | Hlöðver Sigurðsson |
Subject | Re: [Csnd] Re: Questions about "If conditions" |
No, without being expert in machine code, Im sure that today a long condition is not going to use your ram that much. But you can always try to have the conditions set up in such a way that the csound would not have to read trough them all, so using elseif in an order which the most common would be at the top is better but not necessary. Because csound skips all elseif if one condition is met.
2014-04-12 12:36 GMT+00:00 Askwazzup <aistiskaikaris@mail.com>: Thanks, seems to work ok. Though i wonder if one had a very long condition Hlöðver Sigurðsson |