Csound Csound-dev Csound-tekno Search About

[Csnd] Csound6 new syntax

Date2013-11-22 01:17
FromGiorgio Zucco
Subject[Csnd] Csound6 new syntax
Hi, I am exploring the new  experimental syntax in csound6 :


a1 =
poscil(p4*randi(1,1,0),p5+(poscil(5000,100,2))*line(0,p3,1)+lfo(4,2,0),p6)


it's amazing, it works with all the opcodes? in the future there could be
radical changes on this new syntax?

I try with pluck but does not work : 

a1 = pluck(p4+lfo(.5,1),p5+lfo(4,2,0),p5,0,1)  ; work

a1 pluck p4,p5+lfo(4,2,0),p5,0,1 ; work

a1 pluck p4,p5+randomi(1,4,8),p5,0,1 ; error

what is wrong?I also noticed error using the spaces

I'm developing a simple library for Pwgl, to make orchestras, score,
algorithmic composition, etc., this new syntax would help me a lot for my
project!

Best

Giorgio








--
View this message in context: http://csound.1045644.n5.nabble.com/Csound6-new-syntax-tp5729959.html
Sent from the Csound - General mailing list archive at Nabble.com.

Date2013-11-22 07:32
FromVictor Lazzarini
SubjectRe: [Csnd] Csound6 new syntax
Read this
http://www.csounds.com/manual/html/functional.html

On 22 Nov 2013, at 01:17, Giorgio Zucco  wrote:

> Hi, I am exploring the new  experimental syntax in csound6 :
> 
> 
> a1 =
> poscil(p4*randi(1,1,0),p5+(poscil(5000,100,2))*line(0,p3,1)+lfo(4,2,0),p6)
> 
> 
> it's amazing, it works with all the opcodes? in the future there could be
> radical changes on this new syntax?
> 
> I try with pluck but does not work : 
> 
> a1 = pluck(p4+lfo(.5,1),p5+lfo(4,2,0),p5,0,1)  ; work
> 
> a1 pluck p4,p5+lfo(4,2,0),p5,0,1 ; work
> 
> a1 pluck p4,p5+randomi(1,4,8),p5,0,1 ; error
> 
> what is wrong?I also noticed error using the spaces
> 
> I'm developing a simple library for Pwgl, to make orchestras, score,
> algorithmic composition, etc., this new syntax would help me a lot for my
> project!
> 
> Best
> 
> Giorgio
> 
> 
> 
> 
> 
> 
> 
> 
> --
> View this message in context: http://csound.1045644.n5.nabble.com/Csound6-new-syntax-tp5729959.html
> Sent from the Csound - General mailing list archive at Nabble.com.
> 
> 
> Send bugs reports to the Sourceforge bug trackers
> csound6:
>            https://sourceforge.net/p/csound/tickets/
> csound5:
>            https://sourceforge.net/p/csound/bugs/
> Discussions of bugs and features can be posted here
> To unsubscribe, send email sympa@lists.bath.ac.uk with body "unsubscribe csound"
> 
> 



Date2013-11-22 08:43
FromGiorgio Zucco
Subject[Csnd] Re: Csound6 new syntax
Hi, thank you, i have read the manual but I still do not understand what is
wrong

for example :

a1 = pluck(p4*jitter(.1,2,6),p5+lfo(4,2,0),p5,0,1)


works perfectly, if I replace jitter with randi or randomi or randomh give
error,  I am wrong or is it a bug? thank



Giorgio



--
View this message in context: http://csound.1045644.n5.nabble.com/Csound6-new-syntax-tp5729959p5729968.html
Sent from the Csound - General mailing list archive at Nabble.com.

Date2013-11-22 09:34
Fromfrancesco
Subject[Csnd] Re: Csound6 new syntax
Hello Giorgio,
i guess it has to do with this (developers correct me):

The main limitation is that only opcodes with single outputs (or no outputs)
are allowed. In addition, opcodes with multiple optional outputs will not be
parsed successfully in this form. An alternative to allow for these is to
wrap them in user-defined opcodes, or just to intermix standard Csound
syntax with this new style.

To resolve opcode ambiguities, we have introduced type annotations, in the
form of op:type(exprlist). For instance the code:

   a1 = oscili(oscili:k(p4,p5), 440)

will choose a control-rate opcode to modulate the amplitude of the audio
carrier, rather than an audio rate one. There will be cases where the type
annotation will be required, when the input arguments cannot be used to
determine the correct type of opcode to be applied. 





--
View this message in context: http://csound.1045644.n5.nabble.com/Csound6-new-syntax-tp5729959p5729971.html
Sent from the Csound - General mailing list archive at Nabble.com.

Date2013-11-22 09:36
FromVictor Lazzarini
SubjectRe: [Csnd] Csound6 new syntax
Because , in the case of randi, for instance, the default is randi:a (audio rate), and
pluck does not take audio rate amplitude (‘a’ arg type):

 error:  error: opcode 'pluck' for expression with arg types akpcc not found, line 14 

In this case, it is mandatory that you select the randi version you want with a 
type descriptor

 a1 = pluck(p4*randi:k(.1,2,6),p5+lfo(4,2,0),p5,0,1)

and that will work. If you read that page I linked, it’s explained there.

Victor

On 22 Nov 2013, at 08:43, Giorgio Zucco  wrote:

> Hi, thank you, i have read the manual but I still do not understand what is
> wrong
> 
> for example :
> 
> a1 = pluck(p4*jitter(.1,2,6),p5+lfo(4,2,0),p5,0,1)
> 
> 
> works perfectly, if I replace jitter with randi or randomi or randomh give
> error,  I am wrong or is it a bug? thank
> 
> 
> 
> Giorgio
> 
> 
> 
> --
> View this message in context: http://csound.1045644.n5.nabble.com/Csound6-new-syntax-tp5729959p5729968.html
> Sent from the Csound - General mailing list archive at Nabble.com.
> 
> 
> Send bugs reports to the Sourceforge bug trackers
> csound6:
>            https://sourceforge.net/p/csound/tickets/
> csound5:
>            https://sourceforge.net/p/csound/bugs/
> Discussions of bugs and features can be posted here
> To unsubscribe, send email sympa@lists.bath.ac.uk with body "unsubscribe csound"
> 
> 



Date2013-11-22 09:41
FromGiorgio Zucco
Subject[Csnd] Re: Csound6 new syntax
Hi Francesco, jitter, randomi, randomh, randi are all opcodes with single
outputs, if  try with :

lfo, vibr, jitter, random

work perfectly, why don't work with randomi, randomh , randi ? an other
example :

instr 1

a1 rand  p4

a2 tone a1,(jitter(1,3,1)*1000)

out a2

endin


work! but if replace with :


a2 tone a1,(randomi(1,3,1)*1000)

error in performance



--
View this message in context: http://csound.1045644.n5.nabble.com/Csound6-new-syntax-tp5729959p5729973.html
Sent from the Csound - General mailing list archive at Nabble.com.

Date2013-11-22 09:45
FromGiorgio Zucco
Subject[Csnd] Re: Csound6 new syntax
Many thanks Victor! now work!

Best


Giorgio



--
View this message in context: http://csound.1045644.n5.nabble.com/Csound6-new-syntax-tp5729959p5729974.html
Sent from the Csound - General mailing list archive at Nabble.com.

Date2013-11-22 09:48
Fromfrancesco
Subject[Csnd] Re: Csound6 new syntax
I think there is some ambiguities here:

"opcodes with single outputs (or no outputs) are allowed"

maybe, at least for me, this should be type of outputs, because i could
understand 
numbers of outputs, i.e. mono or stereo.
But i am really a basic user.

Ciao,
francesco.




--
View this message in context: http://csound.1045644.n5.nabble.com/Csound6-new-syntax-tp5729959p5729975.html
Sent from the Csound - General mailing list archive at Nabble.com.

Date2013-11-22 10:16
FromRory Walsh
SubjectRe: [Csnd] Re: Csound6 new syntax
Hi Girogio. Try this:

a2 tone a1,(randomi:k(1,3,1)*1000)

You need to use type annotation as randomi can be both a and k rate
but the second parameter of tone is k-rate.

On 22 November 2013 09:48, francesco  wrote:
> I think there is some ambiguities here:
>
> "opcodes with single outputs (or no outputs) are allowed"
>
> maybe, at least for me, this should be type of outputs, because i could
> understand
> numbers of outputs, i.e. mono or stereo.
> But i am really a basic user.
>
> Ciao,
> francesco.
>
>
>
>
> --
> View this message in context: http://csound.1045644.n5.nabble.com/Csound6-new-syntax-tp5729959p5729975.html
> Sent from the Csound - General mailing list archive at Nabble.com.
>
>
> Send bugs reports to the Sourceforge bug trackers
> csound6:
>             https://sourceforge.net/p/csound/tickets/
> csound5:
>             https://sourceforge.net/p/csound/bugs/
> Discussions of bugs and features can be posted here
> To unsubscribe, send email sympa@lists.bath.ac.uk with body "unsubscribe csound"
>
>

Date2013-11-22 10:17
FromRory Walsh
SubjectRe: [Csnd] Re: Csound6 new syntax
Apologies, I meant to write Giorgio!

On 22 November 2013 10:16, Rory Walsh  wrote:
> Hi Girogio. Try this:
>
> a2 tone a1,(randomi:k(1,3,1)*1000)
>
> You need to use type annotation as randomi can be both a and k rate
> but the second parameter of tone is k-rate.
>
> On 22 November 2013 09:48, francesco  wrote:
>> I think there is some ambiguities here:
>>
>> "opcodes with single outputs (or no outputs) are allowed"
>>
>> maybe, at least for me, this should be type of outputs, because i could
>> understand
>> numbers of outputs, i.e. mono or stereo.
>> But i am really a basic user.
>>
>> Ciao,
>> francesco.
>>
>>
>>
>>
>> --
>> View this message in context: http://csound.1045644.n5.nabble.com/Csound6-new-syntax-tp5729959p5729975.html
>> Sent from the Csound - General mailing list archive at Nabble.com.
>>
>>
>> Send bugs reports to the Sourceforge bug trackers
>> csound6:
>>             https://sourceforge.net/p/csound/tickets/
>> csound5:
>>             https://sourceforge.net/p/csound/bugs/
>> Discussions of bugs and features can be posted here
>> To unsubscribe, send email sympa@lists.bath.ac.uk with body "unsubscribe csound"
>>
>>

Date2013-11-22 12:15
FromGiorgio Zucco
Subject[Csnd] Re: Csound6 new syntax
Hi Rory! thanks, now work, this new syntax is very useful for a my Lisp
project for csound and Pwgl :


 





--
View this message in context: http://csound.1045644.n5.nabble.com/Csound6-new-syntax-tp5729959p5729982.html
Sent from the Csound - General mailing list archive at Nabble.com.

Date2013-11-22 12:19
FromRory Walsh
SubjectRe: [Csnd] Re: Csound6 new syntax
Wow, that looks nice!

On 22 November 2013 12:15, Giorgio Zucco  wrote:
> Hi Rory! thanks, now work, this new syntax is very useful for a my Lisp
> project for csound and Pwgl :
>
>
> 
>
>
>
>
>
> --
> View this message in context: http://csound.1045644.n5.nabble.com/Csound6-new-syntax-tp5729959p5729982.html
> Sent from the Csound - General mailing list archive at Nabble.com.
>
>
> Send bugs reports to the Sourceforge bug trackers
> csound6:
>             https://sourceforge.net/p/csound/tickets/
> csound5:
>             https://sourceforge.net/p/csound/bugs/
> Discussions of bugs and features can be posted here
> To unsubscribe, send email sympa@lists.bath.ac.uk with body "unsubscribe csound"
>
>