Re: [PD] cross-correlation in pd ?

2007-06-21 Thread Charles Henry
Alright here is my last version of the patches. Even if no one else is interested, I consider the problem solved at this point. Whenever the calculations are reset, there is a brief transient. digression: That's because I can't find a way to precisely calculate a signal which represents the

Re: [PD] cross-correlation in pd ?

2007-06-20 Thread Charles Henry
This one works within block sizes of 64, by using an [block~ 128 2] . Now, I've got one where you add an argument and use arbitrary block sizes. It's much more useful, this way. [sxcov~ 2048] works within a blocksize of 2048, and calculates the symmetric cross covariance of two signals. Still

Re: [PD] cross-correlation in pd ?

2007-06-19 Thread Jamie Bullock
Hi, On Sun, 2007-06-17 at 23:01 -0500, Charles Henry wrote: Jamie Bullock has cc~ in his flib collection. It computes cross correlation in the time domain, and cross-covariance using the freq. domain. I worked on it a while back...but have been lazy about trying to change the

Re: [PD] cross-correlation in pd ?

2007-06-18 Thread Georg Holzmann
Hallo! The problem is that two of the objects I have in the patch that Andy sent me 1- tab_mul 2- tab_cross_corr these should be in the iem_tab external (included in latest pd extended) LG Georg ___ PD-list@iem.at mailing list UNSUBSCRIBE and

Re: [PD] cross-correlation in pd ?

2007-06-18 Thread Ed Kelly
Hi Tania, Download the distribution from Paul#347; website: http://aubio.piem.org/pub/ tar xvzf aubio-0.3.2.tar.gz There is no makefile because ./configure should create one, then you type make make install. do a ls /usr/local/lib/pd/extra/aubio.pd_darwin if you´ve installed PD from source.

Re: [PD] cross-correlation in pd ?

2007-06-18 Thread Charles Henry
Here's an abstraction for computing a symmetric cross-covariance, this way. It outputs the cross-covariance, xcov(k)=sum(i=-32,...,31; s1(i+k)*s2(i)) It's still pretty ugly, and the details of the math confuse me a bit. I'm still working on the one-sided cross covariance function for delays,

Re: [PD] cross-correlation in pd ?

2007-06-17 Thread cyrille henry
tania habib a écrit : hello list, I was wondering if some body can tell me if there is an object to generate the cross correlation of two signals. mapping/correlation it's data correlation (not audio) cyrille If there is, please let me know which library has it. regards, tania

Re: [PD] cross-correlation in pd ?

2007-06-17 Thread Andy Farnell
I found a helpfile for table cross corr IEMLIB_R1.15 Don't actually have the external though myself for some reason. Looking at the helpfile it would be suitable for audio after using [tabsend~] to fill the tables. On Sun, 17 Jun 2007 17:52:42 +0200 tania habib [EMAIL PROTECTED] wrote:

Re: [PD] cross-correlation in pd ?

2007-06-17 Thread tania habib
1- how can i find this IEMLIB_R1.15 library, as some of the objects in the patch you sent me can not be created. 2- I am using pd extended 0.40 on mac osx 3- how can I include aubio in pd when I download it, a little guidance needed here thanks tania On 6/18/07, Andy Farnell [EMAIL PROTECTED]

Re: [PD] cross-correlation in pd ?

2007-06-17 Thread Hans-Christoph Steiner
On Jun 17, 2007, at 12:46 PM, tania habib wrote: 1- how can i find this IEMLIB_R1.15 library, as some of the objects in the patch you sent me can not be created. 2- I am using pd extended 0.40 on mac osx In Pd-extended, that should all be in the iemlib library. 3- how can I include

Re: [PD] cross-correlation in pd ?

2007-06-17 Thread tania habib
The problem is that two of the objects I have in the patch that Andy sent me 1- tab_mul 2- tab_cross_corr tare not created, I have the IEMLIB included in pd and the rest is ok. Please tell me whether they are coming from same library or they are part of some other one which needs to be included

Re: [PD] cross-correlation in pd ?

2007-06-17 Thread Ed Kelly
Hi Tania, aubio is quite easy, provided you have libsamplerate, libsndfile and fftw3 installed. It is pretty essential that you instal pkgconfig as well, since some libraries rely on that to send information as to where they all reside on the hard disk for compilation. So, aubio in steps:

Re: [PD] cross-correlation in pd ?

2007-06-17 Thread Andy Farnell
No more news on where you might find the externs im afraid, but in case you do get the iem table one working [tabsend~] I suggested would be useless because two of them would seem to be asynchronous and make nonsense of your correlation (is that right?). Two triggered [tabwrites~] as per

Re: [PD] cross-correlation in pd ?

2007-06-17 Thread Charles Henry
Mathieu's right here... It can be done with abstractions. I'm not sure that mine are all correct, but I've used this technique a couple times without making complete abstractions for it... Here's an abstraction for computing a symmetric cross-covariance, this way. It outputs the

Re: [PD] cross-correlation in pd ?

2007-06-17 Thread Mathieu Bouchard
On Sun, 17 Jun 2007, Mathieu Bouchard wrote: On Sun, 17 Jun 2007, Tania Habib wrote: I was wondering if some body can tell me if there is an object to generate the cross correlation of two signals. If there is, please let me know which library has it. Do it with [fft~] just like for signal