[Csnd] Re: three-dimensional function-graphs
| Date | 2010-10-10 10:14 |
| From | kelly hirai |
| Subject | [Csnd] Re: three-dimensional function-graphs |
you can represent an m by n matrix with an m times n length vector using
the following scheme:
matrix[x][y] == vector[x*m+y]
kelly
On Wed, 20 Oct 2010, Stefan Thomas wrote:
> Dear community,
> is it possible to get three-dimensional function-graphs with csound?
> I'm thinking of something like an fm-Index, which depends on the
> key-velocity as well on the midinote.
> Is there a gen-routine-available (or something similar) which could do that?
> I would be very interested
> Stefan
>
> Send bugs reports to the Sourceforge bug tracker
> https://sourceforge.net/tracker/?group_id=81968&atid=564599
> Discussions of bugs and features can be posted here
> To unsubscribe, send email sympa@lists.bath.ac.uk with body "unsubscribe csound"
>
>
Send bugs reports to the Sourceforge bug tracker
https://sourceforge.net/tracker/?group_id=81968&atid=564599
Discussions of bugs and features can be posted here
To unsubscribe, send email sympa@lists.bath.ac.uk with body "unsubscribe csound"
|
| Date | 2010-10-10 10:29 |
| From | kelly hirai |
| Subject | [Csnd] Re: Re: three-dimensional function-graphs |
sorry, tha should be matrix[x][y] == vector[x*n+y].
kelly
On Sun, 10 Oct 2010, kelly hirai wrote:
> you can represent an m by n matrix with an m times n length vector using the
> following scheme:
> matrix[x][y] == vector[x*m+y]
>
> kelly
>
> On Wed, 20 Oct 2010, Stefan Thomas wrote:
>
>> Dear community,
>> is it possible to get three-dimensional function-graphs with csound?
>> I'm thinking of something like an fm-Index, which depends on the
>> key-velocity as well on the midinote.
>> Is there a gen-routine-available (or something similar) which could do
>> that?
>> I would be very interested
>> Stefan
>>
>> Send bugs reports to the Sourceforge bug tracker
>> https://sourceforge.net/tracker/?group_id=81968&atid=564599
>> Discussions of bugs and features can be posted here
>> To unsubscribe, send email sympa@lists.bath.ac.uk with body "unsubscribe
>> csound"
>>
>>
>
>
> Send bugs reports to the Sourceforge bug tracker
> https://sourceforge.net/tracker/?group_id=81968&atid=564599
> Discussions of bugs and features can be posted here
> To unsubscribe, send email sympa@lists.bath.ac.uk with body "unsubscribe
> csound"
>
Send bugs reports to the Sourceforge bug tracker
https://sourceforge.net/tracker/?group_id=81968&atid=564599
Discussions of bugs and features can be posted here
To unsubscribe, send email sympa@lists.bath.ac.uk with body "unsubscribe csound"
|
| Date | 2010-10-20 21:08 |
| From | Stefan Thomas |
| Subject | [Csnd] three-dimensional function-graphs |
| Dear community, is it possible to get three-dimensional function-graphs with csound? I'm thinking of something like an fm-Index, which depends on the key-velocity as well on the midinote. Is there a gen-routine-available (or something similar) which could do that? I would be very interested Stefan |
| Date | 2010-10-21 05:22 |
| From | andy fillebrown |
| Subject | [Csnd] Re: three-dimensional function-graphs |
You may want to check out the vectorial opcodes ... http://www.csounds.com/manual/html/vectorial.html Cheers, ~ andy.f On Wed, Oct 20, 2010 at 4:08 PM, Stefan Thomas |
| Date | 2010-10-21 13:12 |
| From | Stefan Thomas |
| Subject | [Csnd] Re: Re: three-dimensional function-graphs |
| Dear Kelly, dear Andy, thanks for Your hints. But let me ask one more question: matrix isn't an opcode, is it? At least I didn't find it in the manual. 2010/10/21 andy fillebrown <andy.fillebrown@gmail.com> You may want to check out the vectorial opcodes ... |
| Date | 2010-10-21 13:58 |
| From | andy fillebrown |
| Subject | [Csnd] Re: Re: Re: three-dimensional function-graphs |
I don't know of a 'matrix' opcode, but being able to index into a table the way Kelly suggests makes it unnecessary imo. It's all the same to the machine =) Cheers, ~ andy.f On Thu, Oct 21, 2010 at 8:12 AM, Stefan Thomas |
| Date | 2010-10-21 14:00 |
| From | Michael Gogins |
| Subject | [Csnd] Re: Re: Re: Re: three-dimensional function-graphs |
The linear algebra opcodes are, among many other things, matrix opcodes. Regards, Mike On Thu, Oct 21, 2010 at 8:58 AM, andy fillebrown |