Re: [PD] Size of a table

2008-06-23 Thread João Pais
Date: Wed, 11 Jun 2008 15:03:56 +0100 From: Andy Farnell [EMAIL PROTECTED] Subject: Re: [PD] Size of a table To: pd-list@iem.at Message-ID: [EMAIL PROTECTED] Content-Type: text/plain; charset=ISO-8859-1 On Wed, 11 Jun 2008 13:23:28 +0200 Roman Haefeli [EMAIL PROTECTED] wrote: On Wed, 2008-06

Re: [PD] Size of a table

2008-06-22 Thread João Pais
(), and Sum() ) at the very bottom. Matt Date: Wed, 11 Jun 2008 15:03:56 +0100 From: Andy Farnell [EMAIL PROTECTED] Subject: Re: [PD] Size of a table To: pd-list@iem.at Message-ID: [EMAIL PROTECTED] Content-Type: text/plain; charset=ISO-8859-1 On Wed, 11 Jun 2008 13:23:28 +0200 Roman Haefeli

Re: [PD] Size of a table

2008-06-22 Thread Hans-Christoph Steiner
: Andy Farnell [EMAIL PROTECTED] Subject: Re: [PD] Size of a table To: pd-list@iem.at Message-ID: [EMAIL PROTECTED] Content-Type: text/plain; charset=ISO-8859-1 On Wed, 11 Jun 2008 13:23:28 +0200 Roman Haefeli [EMAIL PROTECTED] wrote: On Wed, 2008-06-11 at 12:09 +0100, Hans Roels wrote

Re: [PD] Size of a table

2008-06-14 Thread Luke Iannini
On Wed, Jun 11, 2008 at 6:04 AM, marius schebella [EMAIL PROTECTED] wrote: hi, that's cool. did not know that expr can do that! are there more features of expr that are hidden or unknown?? marius. Hi Marius Check it out: http://www.crca.ucsd.edu/~yadegari/expr.html#funcs Cheers Luke At

Re: [PD] Size of a table

2008-06-12 Thread Steffen Juul
/TipsAndTricks#getting-table- array-size ___ Pd-list@iem.at mailing list UNSUBSCRIBE and account-management - http://lists.puredata.info/listinfo/pd-list

[PD] Size of a table

2008-06-11 Thread raul diaz
Hi list! I have a dumb question. What's the best way to get the size of a table? Sometimes I load a lot of samples on tables with soundfiler and I would like to take the size of each sample as a variable in order to use it with phasor + tabread4~. Is there any object which gets the size of a

Re: [PD] Size of a table

2008-06-11 Thread IOhannes m zmoelnig
raul diaz wrote: Hi list! I have a dumb question. What's the best way to get the size of a table? Sometimes I load a lot of samples on tables with soundfiler and I would like to take the size of each sample as a variable in order to use it with phasor + tabread4~. Is there any object

Re: [PD] Size of a table

2008-06-11 Thread Chris McCormick
On Wed, Jun 11, 2008 at 10:03:28AM +0200, IOhannes m zmoelnig wrote: raul diaz wrote: I have a dumb question. What's the best way to get the size of a table? Sometimes I load a lot of samples on tables with soundfiler and I would like to take the size of each sample as a variable in order to

Re: [PD] Size of a table

2008-06-11 Thread Hans Roels
Apart from [soundfiler] I use this trick to get the size of any array (audio or data) in pd vanilla: (array1 = the name of an example array) bang | [expr size(array1)] | print or replace the expr with [expr size($s2)] and connect a message [symbol array1( to the second inlet of this expr

Re: [PD] Size of a table

2008-06-11 Thread raul diaz
Hi list! Thanks for your answers! I think arraysize is the best way to obtain table size in my case. I know as IOhannes said that I can use the length output from soundfiler, but I load a lot of samples at the same time in the same soundfiler, so it's difficult to get each size separately. I

Re: [PD] Size of a table

2008-06-11 Thread marius schebella
Hans Roels wrote: Apart from [soundfiler] I use this trick to get the size of any array (audio or data) in pd vanilla: (array1 = the name of an example array) bang | [expr size(array1)] | print or replace the expr with [expr size($s2)] and connect a message [symbol array1( to the

Re: [PD] Size of a table

2008-06-11 Thread Enrique Erne
marius schebella wrote: Hans Roels wrote: Apart from [soundfiler] I use this trick to get the size of any array (audio or data) in pd vanilla: (array1 = the name of an example array) bang | [expr size(array1)] | print or replace the expr with [expr size($s2)] and connect a message

Re: [PD] Size of a table

2008-06-11 Thread Andy Farnell
On Wed, 11 Jun 2008 13:23:28 +0200 Roman Haefeli [EMAIL PROTECTED] wrote: On Wed, 2008-06-11 at 12:09 +0100, Hans Roels wrote: Apart from [soundfiler] I use this trick to get the size of any array (audio or data) in pd vanilla: (array1 = the name of an example array) bang | [expr

Re: [PD] Size of a table

2008-06-11 Thread Roman Haefeli
On Wed, 2008-06-11 at 13:18 +0200, raul diaz wrote: Hi list! Thanks for your answers! I think arraysize is the best way to obtain table size in my case. I know as IOhannes said that I can use the length output from soundfiler, but I load a lot of samples at the same time in the same

Re: [PD] Size of a table

2008-06-11 Thread Roman Haefeli
On Wed, 2008-06-11 at 12:09 +0100, Hans Roels wrote: Apart from [soundfiler] I use this trick to get the size of any array (audio or data) in pd vanilla: (array1 = the name of an example array) bang | [expr size(array1)] | print hey, nice trick. thanks for sharing. roman

Re: [PD] Size of a table

2008-06-11 Thread Matt Barber
[EMAIL PROTECTED] Subject: Re: [PD] Size of a table To: pd-list@iem.at Message-ID: [EMAIL PROTECTED] Content-Type: text/plain; charset=ISO-8859-1 On Wed, 11 Jun 2008 13:23:28 +0200 Roman Haefeli [EMAIL PROTECTED] wrote: On Wed, 2008-06-11 at 12:09 +0100, Hans Roels wrote: Apart from