Re: [PD] FW: I need help ASAP[?]

2014-10-22 Thread IOhannes m zmölnig
On 10/21/2014 06:52 PM, Jonathan Wilkes via Pd-list wrote: If you downloaded Pure Data from Miller Puckette's website, or if you downloaded the Pd-Vanilla version from puredata.info, you'll need to install Gem separately. Gem already comes with all major linux distributions, so it's

[PD] Pd in Virginia Tech cube for SEAMUS?

2014-10-22 Thread Miller Puckette
Hi all - Looking at eh SEAMUS application info, I see that the 128-channel sound system is accessible from Max 6.1 and Supercollider but apparently not Pd... is there some specific audio I/O capability that Pd doesn't have that's needed to make this possible? cheers Miller

Re: [PD] Pd in Virginia Tech cube for SEAMUS?

2014-10-22 Thread Jaime E Oliver
I was wondering about that same issue! J On Oct 22, 2014, at 12:37 PM, Miller Puckette m...@ucsd.edu wrote: Hi all - Looking at eh SEAMUS application info, I see that the 128-channel sound system is accessible from Max 6.1 and Supercollider but apparently not Pd... is there some

[PD] Build externals from svn?

2014-10-22 Thread Peter P. via Pd-list
Hi, sorry to be bringing this up, but I am trying to compile some externals form the mrpeach folder. Since these externals have no dedicated Makefile, I would like to use the externals/ Makefile issueing make mrpeach So I am trying to download the whole trunk using the command

[PD] curve fitting help?

2014-10-22 Thread Dan Wilcox
Howdy all, I’m *almost* done with my rjlib compatible s_minimoog abstraction for the rc-patches, but I need help finding the right curve for the ADSR controls. I used block diagrams and the Minimoog Service Manual to build the dsp chain. What I have now can give a *reasonably* accurate

Re: [PD] Build externals from svn?

2014-10-22 Thread Martin Peach
According to the sourceforge site at http://sourceforge.net/p/pure-data/svn/HEAD/tree/ it's svn checkout svn://svn.code.sf.net/p/pure-data/svn/trunk pure-data-svn so maybe the server is busy or something. Martin On Wed, Oct 22, 2014 at 1:56 PM, Peter P. via Pd-list pd-list@lists.iem.at wrote:

Re: [PD] curve fitting help?

2014-10-22 Thread Martin Peach
Maybe start with your x values somewhere negative, since exp(0) = 1. In your graph it looks like around 0.6 would be 0, so subtract 0.6 from x, looks like maybe 1000*exp(x-0.6). Martin On Wed, Oct 22, 2014 at 2:03 PM, Dan Wilcox danomat...@gmail.com wrote: Howdy all, I’m *almost* done with

Re: [PD] curve fitting help?

2014-10-22 Thread Jonathan Wilkes via Pd-list
Why not just draw what you want the curve to be in an array? -Jonathan On Wednesday, October 22, 2014 2:04 PM, Dan Wilcox danomat...@gmail.com wrote: Howdy all, I’m *almost* done with my rjlib compatible s_minimoog abstraction for the rc-patches, but I need help finding the right curve

Re: [PD] Build externals from svn?

2014-10-22 Thread Peter P. via Pd-list
Hi, * Martin Peach chakekat...@gmail.com [2014-10-22 20:37]: According to the sourceforge site at http://sourceforge.net/p/pure-data/svn/HEAD/tree/ it's svn checkout svn://svn.code.sf.net/p/pure-data/svn/trunk pure-data-svn so maybe the server is busy or something. Indeed, thank you! It works

Re: [PD] curve fitting help?

2014-10-22 Thread Joe White
Hey Dan, Does the attached patch do what you want? It's a bit crude but you get the same graph output, I suppose you could always smooth the data if you didn't want it linear as well. Cheers, Joe On 22 October 2014 20:22, Jonathan Wilkes via Pd-list pd-list@lists.iem.at wrote: Why not just