Csound Csound-dev Csound-tekno Search About

[Csnd] GEN23 warning?

Date2010-07-12 16:03
FromLouis Cohen
Subject[Csnd] GEN23 warning?
I have the following statements in the sco section of my csd file:

f300 0 256		-23	"./data/rationalratios4.csv"
f301 0 1024		-23	"./data/piercegamut.csv"
f302 0 1024		-23	"./data/perfectthirds.csv"

The .csv files being read are text files containing numbers each  
terminated by a Macintosh end of line character (created by OpenOffice.)

The number of entries in these files is 145, 178, and 74,  
respectively. When I compile the csd file I get these messages:

ftable 300:
WARNING: Numbers after table full in GEN23
ftable 301:
WARNING: Numbers after table full in GEN23
ftable 302:
WARNING: Numbers after table full in GEN23

What do these messages indicate?

best,
Lou Cohen




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-07-12 18:15
FromOeyvind Brandtsegg
Subject[Csnd] Re: GEN23 warning?
I would try to read the first few values from one of the tables, and
compare it to the data you'd expect to find there. Just to check if
the data is read correctly, it could be a formatting issue of some
sort.
best
Oeyvind

2010/7/12 Louis Cohen :
> I have the following statements in the sco section of my csd file:
>
> f300 0 256              -23     "./data/rationalratios4.csv"
> f301 0 1024             -23     "./data/piercegamut.csv"
> f302 0 1024             -23     "./data/perfectthirds.csv"
>
> The .csv files being read are text files containing numbers each terminated
> by a Macintosh end of line character (created by OpenOffice.)
>
> The number of entries in these files is 145, 178, and 74, respectively. When
> I compile the csd file I get these messages:
>
> ftable 300:
> WARNING: Numbers after table full in GEN23
> ftable 301:
> WARNING: Numbers after table full in GEN23
> ftable 302:
> WARNING: Numbers after table full in GEN23
>
> What do these messages indicate?
>
> best,
> Lou Cohen
>
>
>
>
> 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-07-12 20:38
FromLouis Cohen
Subject[Csnd] Re: Re: GEN23 warning?
Oeyvind,

Thanks for your advice. I use these tables in a UDO, so I sent the UDO  
a handful of legal and illegal inputs. The returned values were all as  
I expected them to be.

As far as I can tell, the tables and my processing of them is fine. I  
have actually used these tables, and the same UDO, in another csd,  
with exactly the same environment -- no warning messages.

However, in this case I get the warning messages even though I can  
find nothing wrong with the functioning of the tables.... strange.

In any case, thanks for your advice. All's well that ends well.

-Lou

On Jul 12, 2010, at 1:15 PM, Oeyvind Brandtsegg wrote:

> I would try to read the first few values from one of the tables, and
> compare it to the data you'd expect to find there. Just to check if
> the data is read correctly, it could be a formatting issue of some
> sort.
> best
> Oeyvind
>
> 2010/7/12 Louis Cohen :
>> I have the following statements in the sco section of my csd file:
>>
>> f300 0 256              -23     "./data/rationalratios4.csv"
>> f301 0 1024             -23     "./data/piercegamut.csv"
>> f302 0 1024             -23     "./data/perfectthirds.csv"
>>
>> The .csv files being read are text files containing numbers each  
>> terminated
>> by a Macintosh end of line character (created by OpenOffice.)
>>
>> The number of entries in these files is 145, 178, and 74,  
>> respectively. When
>> I compile the csd file I get these messages:
>>
>> ftable 300:
>> WARNING: Numbers after table full in GEN23
>> ftable 301:
>> WARNING: Numbers after table full in GEN23
>> ftable 302:
>> WARNING: Numbers after table full in GEN23
>>
>> What do these messages indicate?
>>
>> best,
>> Lou Cohen
>>
>>
>>
>>
>> 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-07-13 06:25
Fromjpff@cs.bath.ac.uk
Subject[Csnd] Re: Re: Re: GEN23 warning?
Just looked at the code and there was a missing "not" in a test for extra
numbers.  Actually it would report extra numers if there were no extra
numbers and nothing if there were.....  Fixed in CVS in a few minutes
==John ff

> Oeyvind,
>
> Thanks for your advice. I use these tables in a UDO, so I sent the UDO
> a handful of legal and illegal inputs. The returned values were all as
> I expected them to be.
>
> As far as I can tell, the tables and my processing of them is fine. I
> have actually used these tables, and the same UDO, in another csd,
> with exactly the same environment -- no warning messages.
>
> However, in this case I get the warning messages even though I can
> find nothing wrong with the functioning of the tables.... strange.
>
> In any case, thanks for your advice. All's well that ends well.
>
> -Lou
>
> On Jul 12, 2010, at 1:15 PM, Oeyvind Brandtsegg wrote:
>
>> I would try to read the first few values from one of the tables, and
>> compare it to the data you'd expect to find there. Just to check if
>> the data is read correctly, it could be a formatting issue of some
>> sort.
>> best
>> Oeyvind
>>
>> 2010/7/12 Louis Cohen :
>>> I have the following statements in the sco section of my csd file:
>>>
>>> f300 0 256              -23     "./data/rationalratios4.csv"
>>> f301 0 1024             -23     "./data/piercegamut.csv"
>>> f302 0 1024             -23     "./data/perfectthirds.csv"
>>>
>>> The .csv files being read are text files containing numbers each
>>> terminated
>>> by a Macintosh end of line character (created by OpenOffice.)
>>>
>>> The number of entries in these files is 145, 178, and 74,
>>> respectively. When
>>> I compile the csd file I get these messages:
>>>
>>> ftable 300:
>>> WARNING: Numbers after table full in GEN23
>>> ftable 301:
>>> WARNING: Numbers after table full in GEN23
>>> ftable 302:
>>> WARNING: Numbers after table full in GEN23
>>>
>>> What do these messages indicate?
>>>
>>> best,
>>> Lou Cohen
>>>
>>>
>>>
>>>
>>> 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"
>
>
>
>




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-07-13 13:43
FromLouis Cohen
Subject[Csnd] Re: Re: Re: Re: GEN23 warning?
Thanks for checking this, John.

best,
Lou Cohen

On Jul 13, 2010, at 1:25 AM, jpff@cs.bath.ac.uk wrote:

> Just looked at the code and there was a missing "not" in a test for  
> extra
> numbers.  Actually it would report extra numers if there were no extra
> numbers and nothing if there were.....  Fixed in CVS in a few minutes
> ==John ff
>
>> Oeyvind,
>>
>> Thanks for your advice. I use these tables in a UDO, so I sent the  
>> UDO
>> a handful of legal and illegal inputs. The returned values were all  
>> as
>> I expected them to be.
>>
>> As far as I can tell, the tables and my processing of them is fine. I
>> have actually used these tables, and the same UDO, in another csd,
>> with exactly the same environment -- no warning messages.
>>
>> However, in this case I get the warning messages even though I can
>> find nothing wrong with the functioning of the tables.... strange.
>>
>> In any case, thanks for your advice. All's well that ends well.
>>
>> -Lou
>>
>> On Jul 12, 2010, at 1:15 PM, Oeyvind Brandtsegg wrote:
>>
>>> I would try to read the first few values from one of the tables, and
>>> compare it to the data you'd expect to find there. Just to check if
>>> the data is read correctly, it could be a formatting issue of some
>>> sort.
>>> best
>>> Oeyvind
>>>
>>> 2010/7/12 Louis Cohen :
>>>> I have the following statements in the sco section of my csd file:
>>>>
>>>> f300 0 256              -23     "./data/rationalratios4.csv"
>>>> f301 0 1024             -23     "./data/piercegamut.csv"
>>>> f302 0 1024             -23     "./data/perfectthirds.csv"
>>>>
>>>> The .csv files being read are text files containing numbers each
>>>> terminated
>>>> by a Macintosh end of line character (created by OpenOffice.)
>>>>
>>>> The number of entries in these files is 145, 178, and 74,
>>>> respectively. When
>>>> I compile the csd file I get these messages:
>>>>
>>>> ftable 300:
>>>> WARNING: Numbers after table full in GEN23
>>>> ftable 301:
>>>> WARNING: Numbers after table full in GEN23
>>>> ftable 302:
>>>> WARNING: Numbers after table full in GEN23
>>>>
>>>> What do these messages indicate?
>>>>
>>>> best,
>>>> Lou Cohen
>>>>
>>>>
>>>>
>>>>
>>>> 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"
>>
>>
>>
>>
>
>
>
>
> 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"