Csound Csound-dev Csound-tekno Search About

[Csnd] question about modal frequency

Date2010-05-25 09:07
FromStefan Thomas
Subject[Csnd] question about modal frequency
Dear community,
I have a question about modal freqencies .
If I use it with mode, e.g., can I do it in the following way?

; Dahina tabla [1, 2.89, 4.95, 6.99, 8.01, 9.02]
areson1 mode ain, icps, ipcs*2.89
areson2 mode ain, icps*4.95, icps*6.99
areson3 mode ain, icps*8.01, icps*9.02
 

Date2010-05-25 18:31
FromSteven Yi
Subject[Csnd] Re: question about modal frequency
Hi Stefan,

That will work, but I don't think that the table of modal frequencies
is supposed to be used this way.  The ratios in Scott Lindroths'
tables frequency ratio tables look like only center frequencies, not
Q.  So I'd interpreter the Dahina tabla as 6 mode resonators, not 3.
The filter Q would then be something you would have to work with to
find something you like I think.

steven

On Tue, May 25, 2010 at 4:07 AM, Stefan Thomas
 wrote:
> Dear community,
> I have a question about modal freqencies .
> If I use it with mode, e.g., can I do it in the following way?
>
>> ; Dahina tabla [1, 2.89, 4.95, 6.99, 8.01, 9.02]
>> areson1 mode ain, icps, ipcs*2.89
>> areson2 mode ain, icps*4.95, icps*6.99
>> areson3 mode ain, icps*8.01, icps*9.02
>
>
>


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"

Date2010-05-25 18:36
Frommark jamerson
Subject[Csnd] Re: question about modal frequency

   That will not work correctly.  You need to have a line for each of the modal frequencies like this:

; Dahina tabla [1, 2.89, 4.95, 6.99, 8.01, 9.02]
areson1 mode ain, icps, kQ1
areson2 mode ain, icps*2.8, kQ2
areson3 mode ain, icps*4.95, kQ3
areson4 mode ain, icps*6.99, kQ4
areson5 mode ain, icps*8.01, kQ5

The kQ argument at the end of each line defines the resonance bandwidth of each mode filter.   You will need to play with these values to get the desired result.


--- On Tue, 5/25/10, Stefan Thomas <kontrapunktstefan@googlemail.com> wrote:

From: Stefan Thomas <kontrapunktstefan@googlemail.com>
Subject: [Csnd] question about modal frequency
To: csound@lists.bath.ac.uk
Date: Tuesday, May 25, 2010, 3:07 AM

Dear community,
I have a question about modal freqencies .
If I use it with mode, e.g., can I do it in the following way?

; Dahina tabla [1, 2.89, 4.95, 6.99, 8.01, 9.02]
areson1 mode ain, icps, ipcs*2.89
areson2 mode ain, icps*4.95, icps*6.99
areson3 mode ain, icps*8.01, icps*9.02
 


Date2010-05-25 22:51
FromIain McCurdy
Subject[Csnd] RE: question about modal frequency
I wrote an interactive example that demonstrates the mode opcode that you might wish to try:
http://www.iainmccurdy.org/CsoundRealtimeExamples/SoundGenerators/mode.csd

Iain

________________________________
> Date: Tue, 25 May 2010 10:07:48 +0200
> From: kontrapunktstefan@googlemail.com
> To: csound@lists.bath.ac.uk
> Subject: [Csnd] question about modal frequency
>
> Dear community,
> I have a question about modal freqencies .
> If I use it with mode, e.g., can I do it in the following way?
>
> ; Dahina tabla [1, 2.89, 4.95, 6.99, 8.01, 9.02]
> areson1 mode ain, icps, ipcs*2.89
> areson2 mode ain, icps*4.95, icps*6.99
> areson3 mode ain, icps*8.01, icps*9.02
>
 		 	   		  
_________________________________________________________________
http://clk.atdmt.com/UKM/go/195013117/direct/01/


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"


Date2010-05-25 23:39
From"Dr. Richard Boulanger"
Subject[Csnd] Re: RE: question about modal frequency
WOW.  Super.

Dr. B.

On May 25, 2010, at 5:51 PM, Iain McCurdy wrote:

>
> I wrote an interactive example that demonstrates the mode opcode  
> that you might wish to try:
> http://www.iainmccurdy.org/CsoundRealtimeExamples/SoundGenerators/mode.csd
>
> Iain
>
> ________________________________
>> Date: Tue, 25 May 2010 10:07:48 +0200
>> From: kontrapunktstefan@googlemail.com
>> To: csound@lists.bath.ac.uk
>> Subject: [Csnd] question about modal frequency
>>
>> Dear community,
>> I have a question about modal freqencies .
>> If I use it with mode, e.g., can I do it in the following way?
>>
>> ; Dahina tabla [1, 2.89, 4.95, 6.99, 8.01, 9.02]
>> areson1 mode ain, icps, ipcs*2.89
>> areson2 mode ain, icps*4.95, icps*6.99
>> areson3 mode ain, icps*8.01, icps*9.02
>>
> 		 	   		
> _________________________________________________________________
> http://clk.atdmt.com/UKM/go/195013117/direct/01/
>
>
> 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"

Date2010-05-26 08:30
FromStéphane Rollandin
Subject[Csnd] Re: RE: question about modal frequency
> I wrote an interactive example that demonstrates the mode opcode that you might wish to try:
> http://www.iainmccurdy.org/CsoundRealtimeExamples/SoundGenerators/mode.csd

wonderful, thanks !

Stef





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"

Date2010-05-26 11:53
FromRory Walsh
Subject[Csnd] Re: Re: RE: question about modal frequency
This won't run for me on OSX Ian? It gives me an error about an
invalid midi port even though you've specified the use of Steven
Virtual Midi controller. Any ideas?

2010/5/26 Stéphane Rollandin :
>> I wrote an interactive example that demonstrates the mode opcode that you
>> might wish to try:
>> http://www.iainmccurdy.org/CsoundRealtimeExamples/SoundGenerators/mode.csd
>
> wonderful, thanks !
>
> Stef
>
>
>
>
>
> 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"


Date2010-05-26 14:07
FromVictor Lazzarini
Subject[Csnd] Re: Re: Re: RE: question about modal frequency
It runs here alright on OSX. Nice.
Victor
On 26 May 2010, at 11:53, Rory Walsh wrote:

> This won't run for me on OSX Ian? It gives me an error about an
> invalid midi port even though you've specified the use of Steven
> Virtual Midi controller. Any ideas?
>
> 2010/5/26 Stéphane Rollandin :
>>> I wrote an interactive example that demonstrates the mode opcode  
>>> that you
>>> might wish to try:
>>> http://www.iainmccurdy.org/CsoundRealtimeExamples/SoundGenerators/mode.csd
>>
>> wonderful, thanks !
>>
>> Stef
>>
>>
>>
>>
>>
>> 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"


Date2010-05-27 10:52
FromStefan Thomas
Subject[Csnd] Re: Re: Re: Re: RE: question about modal frequency
Thanks to You,
I tried Your example, its amazing!
Thanks!

2010/5/26 Victor Lazzarini <Victor.Lazzarini@nuim.ie>
It runs here alright on OSX. Nice.
Victor

On 26 May 2010, at 11:53, Rory Walsh wrote:

This won't run for me on OSX Ian? It gives me an error about an
invalid midi port even though you've specified the use of Steven
Virtual Midi controller. Any ideas?

2010/5/26 Stéphane Rollandin <lecteur@zogotounga.net>:
I wrote an interactive example that demonstrates the mode opcode that you
might wish to try:
http://www.iainmccurdy.org/CsoundRealtimeExamples/SoundGenerators/mode.csd

wonderful, thanks !

Stef





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"



Date2010-05-27 13:50
FromMichael Gogins
Subject[Csnd] Re: Re: Re: Re: Re: RE: question about modal frequency
About the mode demo -- fantastic! I am going to take a good hard look
at the code and see how I can use these sounds in my pieces.

Regards,
Mike

On Thu, May 27, 2010 at 5:52 AM, Stefan Thomas
 wrote:
> Thanks to You,
> I tried Your example, its amazing!
> Thanks!
>
> 2010/5/26 Victor Lazzarini 
>>
>> It runs here alright on OSX. Nice.
>> Victor
>> On 26 May 2010, at 11:53, Rory Walsh wrote:
>>
>>> This won't run for me on OSX Ian? It gives me an error about an
>>> invalid midi port even though you've specified the use of Steven
>>> Virtual Midi controller. Any ideas?
>>>
>>> 2010/5/26 Stéphane Rollandin :
>>>>>
>>>>> I wrote an interactive example that demonstrates the mode opcode that
>>>>> you
>>>>> might wish to try:
>>>>>
>>>>> http://www.iainmccurdy.org/CsoundRealtimeExamples/SoundGenerators/mode.csd
>>>>
>>>> wonderful, thanks !
>>>>
>>>> Stef
>>>>
>>>>
>>>>
>>>>
>>>>
>>>> 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"
>>
>
>



-- 
Michael Gogins
Irreducible Productions
http://www.michael-gogins.com
Michael dot Gogins at gmail dot com


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"