Csound Csound-dev Csound-tekno Search About

[Csnd] Questions about "If conditions"

Date2014-04-12 13:24
FromAskwazzup
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.

Date2014-04-12 13:32
FromHlöðver Sigurðsson
SubjectRe: [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:

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.


Send bugs reports to
        https://github.com/csound/csound/issues
Discussions of bugs and features can be posted here
To unsubscribe, send email sympa@lists.bath.ac.uk with body "unsubscribe csound"






--
Hlöðver Sigurðsson

Date2014-04-12 13:36
FromAskwazzup
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.

Date2014-04-12 13:39
FromRory Walsh
SubjectRe: [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  wrote:
> 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.
>
>
> Send bugs reports to
>         https://github.com/csound/csound/issues
> Discussions of bugs and features can be posted here
> To unsubscribe, send email sympa@lists.bath.ac.uk with body "unsubscribe csound"
>
>
>

Date2014-04-12 13:42
FromHlöðver Sigurðsson
SubjectRe: [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
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.


Send bugs reports to
        https://github.com/csound/csound/issues
Discussions of bugs and features can be posted here
To unsubscribe, send email sympa@lists.bath.ac.uk with body "unsubscribe csound"






--
Hlöðver Sigurðsson