Re: [PD] Vanilla replacement for tanh~

2015-07-02 Thread i go bananas
yes, you need to use a [clip~ -3 3] to restrict the input. But the function converges to +0.99 and -0.99 or whatever by then anyway, so for all practical purposes it is fine. On Fri, Jul 3, 2015 at 2:26 PM, Miller Puckette wrote: > I've never seen that approximation before but there mus

Re: [PD] Vanilla replacement for tanh~

2015-07-02 Thread Pagano, Patrick
Is there something similar in Vanilla for a [lp8_cheb~ 2 100] When I copy the iemlib abs into my extra and dive into the objects it eventually fails because it cannot create filter~ Sent from my iPhone > On Jul 3, 2015, at 1:27 AM, Miller Puckette wrote: > > I've never seen that approxima

Re: [PD] Vanilla replacement for tanh~

2015-07-02 Thread Miller Puckette
I've never seen that approximation before but there must be some restriction on the allowable values of X since the expression diverges for large positive or negative values of x, while tanh(x) converges to +1 nad -1, respectively. cheers Miller On Fri, Jul 03, 2015 at 01:23:29PM +0900, i go banan

Re: [PD] Vanilla replacement for tanh~

2015-07-02 Thread i go bananas
there's a good approximation for tanh that can be made using just a couple of simple arithmetic objects: formula is: tanh(x) ~= x*(27+x*x) / (27+9*x*x) it's close enough for every application i've ever come across, it's cheap cos it only uses simple arithmetic, and it doesn't degrade the resolut

Re: [PD] Vanilla replacement for tanh~

2015-07-02 Thread Chris McCormick
On 03/07/15 03:06, Pagano, Patrick wrote: > Is there a way i can replace something for tanh~ > and inits in Vanilla 46? Using a pre-computed table for speed: https://github.com/chr15m/blockhead/blob/master/e_tanh.pd https://github.com/chr15m/blockhead/blob/master/e_tanh-help.pd Or install "block

Re: [PD] [ANN] HOA & Cream Library new releases

2015-07-02 Thread Jonathan Wilkes via Pd-list
On 07/01/2015 09:58 PM, Chris McCormick wrote: On 02/07/15 06:23, Jonathan Wilkes via Pd-list wrote: On the other, your improved API ends in Tk canvas subcommands, and thus inherits all the limitations and bugs of Tk canvas. Practically speaking, what is Pierre's alternative? I'm not sure yet

[PD] looking for an object like max's join

2015-07-02 Thread Alexandre Torres Porres
hi, I wonder if anyone thought of making an object that generates a list from individual inlets that triggers the output whenever a value is sent to any inlet. I'm using [cyclone/bondo] and [pack] to do this (see attachment), but I wonder if there's a single object to handle it. A new object was

Re: [PD] Vanilla replacement for tanh~

2015-07-02 Thread Alexandre Torres Porres
but hey, if one, for any reason, has a problem with expr, you can do with vanilla math objects too as attached 2015-07-02 18:50 GMT-03:00 Alexandre Torres Porres : > guys, what I've trying to say is that the expr family of objects has a > tanh function... and it is exactly the same as what you ge

Re: [PD] Vanilla replacement for tanh~

2015-07-02 Thread Alexandre Torres Porres
guys, what I've trying to say is that the expr family of objects has a tanh function... and it is exactly the same as what you get with cyclone/tanh~] sorry for screwing up and not being clear see attachments cheers ps. I consider expr to be vanilla... why wouldn't it be? 2015-07-02 18:43 GMT-

Re: [PD] Vanilla replacement for tanh~

2015-07-02 Thread Alexandre Torres Porres
no... I scrwed up [expr~ tanh($v1)]] 2015-07-02 18:42 GMT-03:00 Martin Peach : > You need to turn on the DSP... > > Martin > > On Thu, Jul 2, 2015 at 5:39 PM, Pagano, Patrick > wrote: > >> ​Martin when i move the number box it does not change value after the >> snapshot~ >> >> should it or do

Re: [PD] Vanilla replacement for tanh~

2015-07-02 Thread Martin Peach
You need to turn on the DSP... Martin On Thu, Jul 2, 2015 at 5:39 PM, Pagano, Patrick wrote: > ​Martin when i move the number box it does not change value after the > snapshot~ > > should it or does it need a signal? > > > Also > > i was trying to replace lp8_cheb~ as well in Vanilla and it s

Re: [PD] Vanilla replacement for tanh~

2015-07-02 Thread Pagano, Patrick
?Martin when i move the number box it does not change value after the snapshot~ should it or does it need a signal? Also i was trying to replace lp8_cheb~ as well in Vanilla and it seems like a series of iemlib files until i get down to "filter~" which i cannot find a replacement for anyone

Re: [PD] Vanilla replacement for tanh~

2015-07-02 Thread Martin Peach
In pd Pd 0.46.6 I can do the attached patch without adding any extra externals so it's probably vanilla. Martin On Thu, Jul 2, 2015 at 5:13 PM, IOhannes m zmölnig wrote: > On 07/02/2015 10:19 PM, Alexandre Torres Porres wrote: > > just use [expr~] > > does that count as vanilla? > > fgmards > I

Re: [PD] Vanilla replacement for tanh~

2015-07-02 Thread IOhannes m zmölnig
On 07/02/2015 10:19 PM, Alexandre Torres Porres wrote: > just use [expr~] does that count as vanilla? fgmards IOhannes signature.asc Description: OpenPGP digital signature ___ Pd-list@lists.iem.at mailing list UNSUBSCRIBE and account-management ->

Re: [PD] Vanilla replacement for tanh~

2015-07-02 Thread Alexandre Torres Porres
just use [expr~] [expr~ $v1] voilà 2015-07-02 16:53 GMT-03:00 Pagano, Patrick : > I'm confused can you show me what you mean? > use > [exp~ then what?] > > Sent from my iPhone > > > On Jul 2, 2015, at 3:40 PM, Charles Z Henry wrote: > > > >> On Thu, Jul 2, 2015 at 2:31 PM, Cyrille Henry wrote

Re: [PD] Vanilla replacement for tanh~

2015-07-02 Thread Pagano, Patrick
I'm confused can you show me what you mean? use [exp~ then what?] Sent from my iPhone > On Jul 2, 2015, at 3:40 PM, Charles Z Henry wrote: > >> On Thu, Jul 2, 2015 at 2:31 PM, Cyrille Henry wrote: >> hello, >> >> Le 02/07/2015 21:06, Pagano, Patrick a écrit : >>> >>> Is there a way i can r

Re: [PD] Vanilla replacement for tanh~

2015-07-02 Thread Charles Z Henry
On Thu, Jul 2, 2015 at 2:31 PM, Cyrille Henry wrote: > hello, > > Le 02/07/2015 21:06, Pagano, Patrick a écrit : >> >> Is there a way i can replace something for tanh~ > > > sin~ / cos~ > > sin~ is a [+~ 0.25] and a [cos~] > > cheers > c That's tan~ tanh(x) = (e^x - e^-x)/(e^x + e^-x) In vanilla

Re: [PD] Vanilla replacement for tanh~

2015-07-02 Thread Cyrille Henry
hello, Le 02/07/2015 21:06, Pagano, Patrick a écrit : Is there a way i can replace something for tanh~ sin~ / cos~ sin~ is a [+~ 0.25] and a [cos~] cheers c and inits in Vanilla 46? please help! pp /Patrick Pagano B.S, M.F.A/ Audio and Projection Design Faculty Digital Worlds Inst

[PD] Vanilla replacement for tanh~

2015-07-02 Thread Pagano, Patrick
Is there a way i can replace something for tanh~ and inits in Vanilla 46? please help! pp Patrick Pagano B.S, M.F.A Audio and Projection Design Faculty Digital Worlds Institute University of Florida, USA (352)294-2020 ___ Pd-list@lists.iem.at maili

Re: [PD] URL Audio to PD

2015-07-02 Thread Roman Haefeli
On Don, 2015-07-02 at 17:27 +0200, Lorenzo Sutton wrote: > > On 26/06/2015 22:42, IOhannes m zmölnig wrote: > > On 06/26/2015 10:14 PM, Alexandre Torres Porres wrote: > >> i guess you can use software to route audio from the browser to pd, may > >> this one works https://www.rogueamoeba.com/audioh

[PD] block~ and subpatching

2015-07-02 Thread Jacopo Lovatello
Hi guys, I've got a doubt about [block~]: I must create an oversampled oscillator that I'm going to filter with an antialiasing filter. I can't put [block~] where I've got my [phasor~] object, because, in that case, I'm going to oversample also other parameters that I don't want to oversample (lik

Re: [PD] URL Audio to PD

2015-07-02 Thread Lorenzo Sutton
On 26/06/2015 22:42, IOhannes m zmölnig wrote: On 06/26/2015 10:14 PM, Alexandre Torres Porres wrote: i guess you can use software to route audio from the browser to pd, may this one works https://www.rogueamoeba.com/audiohijack/ or just use jack. I agree. I would do the url selection and

Re: [PD] dmx interfaces + Pd

2015-07-02 Thread Iain Mott
Thanks a lot for the responses. Iain ___ Pd-list@lists.iem.at mailing list UNSUBSCRIBE and account-management -> http://lists.puredata.info/listinfo/pd-list

Re: [PD] [ANN] HOA & Cream Library new releases

2015-07-02 Thread Pierre Guillot
> I had a look at your wrapper code. It is extremely well-organized and readable, btw. > On the one hand, you're giving users/devs a much improved API with which > to create > and maintain GUI externals. I've been porting Pd to a different toolkit > (and completely > away from tcl/tk), so I am i