Csound Csound-dev Csound-tekno Search About

[Csnd] Arrays of 'k'

Date2013-03-18 11:39
FromRoger Kelly
Subject[Csnd] Arrays of 'k'
Is it possible in the latest Csound to have a 'k' array?

Date2013-03-18 11:41
FromSteven Yi
SubjectRe: [Csnd] Arrays of 'k'

In Csound 6, yes.

On Mar 18, 2013 11:39 AM, "Roger Kelly" <loraxman@gmail.com> wrote:
Is it possible in the latest Csound to have a 'k' array?

Date2013-03-18 11:55
FromRoger Kelly
SubjectRe: [Csnd] Arrays of 'k'
What would be a quick example of a declaration and usage?

ksomvar[50] init 0

ksomvar[kidx] = chnget "chn"

Any idea on when Csound 6 is released?


On Mon, Mar 18, 2013 at 6:41 AM, Steven Yi <stevenyi@gmail.com> wrote:

In Csound 6, yes.

On Mar 18, 2013 11:39 AM, "Roger Kelly" <loraxman@gmail.com> wrote:
Is it possible in the latest Csound to have a 'k' array?


Date2013-03-18 12:09
FromSteven Yi
SubjectRe: [Csnd] Arrays of 'k'
I posted a video that shows using a k-array here:

http://www.youtube.com/watch?v=oT7CswwLpGg

(starting at about 2:00)

usage is currently set as:

karr[] init 40  ; the 40 determines array size
karr[][] init 10, 2  ; this is a 2d array, i.e. float[10][2]

Currently you can not do:

ksomvar[kidx] = chnget "chn"

because we do not have calling of opcodes like functions.  You should
be able to do:

ksomvar[kidx] chnget "chn"

though.

Not sure about release date. We're doing a lot of development and bug
fixing now over on the dev list, but I would guess sometime in May.


On Mon, Mar 18, 2013 at 11:55 AM, Roger Kelly  wrote:
> What would be a quick example of a declaration and usage?
>
> ksomvar[50] init 0
>
> ksomvar[kidx] = chnget "chn"
>
> Any idea on when Csound 6 is released?
>
>
> On Mon, Mar 18, 2013 at 6:41 AM, Steven Yi  wrote:
>>
>> In Csound 6, yes.
>>
>> On Mar 18, 2013 11:39 AM, "Roger Kelly"  wrote:
>>>
>>> Is it possible in the latest Csound to have a 'k' array?
>
>