Someone asked me about "pow" before. I plain forgot to write one. I'll deal with it for the "upcoming" release so there's no need for you to go to the trouble.
Thanks Miller
On Fri, 22 Jan 1999, Miller Puckette wrote:
Someone asked me about "pow" before. I plain forgot to write one. I'll deal with it for the "upcoming" release so there's no need for you to go to the trouble.
One can always do a bit of trickery with a log, a *, and an exp.
I am interested in a way to store maximum or minimum values, sort of like the int operator but it first checks if the new value is greater/less than the stored value.
Hm, a few more interesting ones: sign (returns a 1/-1, useful with abs), additive inverse, multiplicative inverse.
ashes@zennet.com
On Fri, 22 Jan 1999, Brandon J. Rickman wrote:
I am interested in a way to store maximum or minimum values, sort of like the int operator but it first checks if the new value is greater/less than the stored value.
you can store maximum/minimum values with 'moses'...
you can find a very simple example patch at:
http://wonk.epy.co.at/pdlib/lib/max.pd
klaus
Hm, a few more interesting ones: sign (returns a 1/-1, useful with abs), additive inverse, multiplicative inverse.
- Brandon
ashes@zennet.com