Just curious if anyone else has tried this before I have a go:
A table in which I can make an arbitrary number of breakpoints, for both the top and bottom part of the range. See attached image for clarity. The idea is that I can use the top set of breakpoints as the upper limit of a random range, and the bottom set as the lower limit.
best! Derek
have never heard of it.
Just curious if anyone else has tried this before I have a go:
A table in which I can make an arbitrary number of breakpoints, for both the top and bottom part of the range. See attached image for clarity. The idea is that I can use the top set of breakpoints as the upper limit of a random range, and the bottom set as the lower limit.
best! Derek
Hallo, Derek Holzer hat gesagt: // Derek Holzer wrote:
Just curious if anyone else has tried this before I have a go:
A table in which I can make an arbitrary number of breakpoints, for both
the top and bottom part of the range. See attached image for clarity.
The idea is that I can use the top set of breakpoints as the upper limit
of a random range, and the bottom set as the lower limit.
This is also called a "tendency mask" in the computer music literature. Attached is a realisation I once did. You specify the two tendencies as lists.
Frank
Hi Frank,
yes, "tendency mask" is definitely what I'm after, however I would like to graphically create the mask rather than work with lists. The main problem I'm trying to solve is how to set up a table GUI with two adjustable lines in it. Ideas anyone?
D.
Frank Barknecht wrote:
Hallo, Derek Holzer hat gesagt: // Derek Holzer wrote:
Just curious if anyone else has tried this before I have a go:
A table in which I can make an arbitrary number of breakpoints, for both
the top and bottom part of the range. See attached image for clarity.
The idea is that I can use the top set of breakpoints as the upper limit
of a random range, and the bottom set as the lower limit.This is also called a "tendency mask" in the computer music literature. Attached is a realisation I once did. You specify the two tendencies as lists.
Hallo, Derek Holzer hat gesagt: // Derek Holzer wrote:
yes, "tendency mask" is definitely what I'm after, however I would like
to graphically create the mask rather than work with lists. The main
problem I'm trying to solve is how to set up a table GUI with two
adjustable lines in it. Ideas anyone?
My suggestion: Use data structures instead (I know ...) then dump these as lists into the tendency mask object.
Frank
Somehow I knew you were going to say that ;-)
D.
Frank Barknecht wrote:
Hallo, Derek Holzer hat gesagt: // Derek Holzer wrote:
yes, "tendency mask" is definitely what I'm after, however I would like
to graphically create the mask rather than work with lists. The main
problem I'm trying to solve is how to set up a table GUI with two
adjustable lines in it. Ideas anyone?My suggestion: Use data structures instead (I know ...) then dump these as lists into the tendency mask object.
Ciao
Cool! This could *possibly* inspire me to learn more about data structures ;-) And it does exactly what I was describing. I'll plow ahead.
Danke! D.
Frank Barknecht wrote:
Hallo, Derek Holzer hat gesagt: // Derek Holzer wrote:
Somehow I knew you were going to say that ;-)
It's not too hard. Attached is a tendency mask editor I quickly hacked together.
Open both the editor and the changed tendency-mask.pd to see it in action.
Ciao
Overlapping of two graph ? Or you can use data structures ? ++
Jack
Le mardi 10 novembre 2009 à 13:12 +0100, Derek Holzer a écrit :
Hi Frank,
yes, "tendency mask" is definitely what I'm after, however I would like to graphically create the mask rather than work with lists. The main problem I'm trying to solve is how to set up a table GUI with two adjustable lines in it. Ideas anyone?
D.
Frank Barknecht wrote:
Hallo, Derek Holzer hat gesagt: // Derek Holzer wrote:
Just curious if anyone else has tried this before I have a go:
A table in which I can make an arbitrary number of breakpoints, for both
the top and bottom part of the range. See attached image for clarity.
The idea is that I can use the top set of breakpoints as the upper limit
of a random range, and the bottom set as the lower limit.This is also called a "tendency mask" in the computer music literature. Attached is a realisation I once did. You specify the two tendencies as lists.
data structures must be. eitheir an array with x size and the first half
for the top row / 2nd half for bottom row, or 2 arrays/polygons (look at
HC's solitude).
Hi Frank,
yes, "tendency mask" is definitely what I'm after, however I would like
to graphically create the mask rather than work with lists. The main
problem I'm trying to solve is how to set up a table GUI with two
adjustable lines in it. Ideas anyone?D.
Frank Barknecht wrote:
Hallo, Derek Holzer hat gesagt: // Derek Holzer wrote:
Just curious if anyone else has tried this before I have a go:
A table in which I can make an arbitrary number of breakpoints, for
both the top and bottom part of the range. See attached image for
clarity. The idea is that I can use the top set of breakpoints as the
upper limit of a random range, and the bottom set as the lower limit.This is also called a "tendency mask" in the computer music
literature. Attached is a realisation I once did. You specify the two
tendencies as lists.
The data structures in solitude are not the same, each point is
symmetric across the X axis, so they are much simpler. I just took
that code from Miller's data structures sequencer example.
.hc
On Nov 10, 2009, at 7:51 AM, João Pais wrote:
data structures must be. eitheir an array with x size and the first
half for the top row / 2nd half for bottom row, or 2 arrays/polygons
(look at HC's solitude).Hi Frank,
yes, "tendency mask" is definitely what I'm after, however I would
like to graphically create the mask rather than work with lists.
The main problem I'm trying to solve is how to set up a table GUI
with two adjustable lines in it. Ideas anyone?D.
Frank Barknecht wrote:
Hallo, Derek Holzer hat gesagt: // Derek Holzer wrote:
Just curious if anyone else has tried this before I have a go:
A table in which I can make an arbitrary number of breakpoints,
for both the top and bottom part of the range. See attached
image for clarity. The idea is that I can use the top set of
breakpoints as the upper limit of a random range, and the bottom
set as the lower limit.This is also called a "tendency mask" in the computer music
literature. Attached is a realisation I once did. You specify the
two tendencies as lists.-- Friedenstr. 58 10249 Berlin (Deutschland) Tel +49 30 42020091 | Mob +49 162 6843570 Studio +49 30 69509190 jmmmpais@googlemail.com | skype: jmmmpjmmmp
Pd-list@iem.at mailing list UNSUBSCRIBE and account-management -> http://lists.puredata.info/listinfo/pd-list
Man has survived hitherto because he was too ignorant to know how to
realize his wishes. Now that he can realize them, he must either
change them, or perish. -William Carlos Williams
I was refering to using polygons instead of arrays. if you have variable
points with a simple ramp between them, it might be the better.
and for that you would meed 2, upper+lower.
The data structures in solitude are not the same, each point is
symmetric across the X axis, so they are much simpler. I just took that
code from Miller's data structures sequencer example..hc
On Nov 10, 2009, at 7:51 AM, João Pais wrote:
data structures must be. eitheir an array with x size and the first
half for the top row / 2nd half for bottom row, or 2 arrays/polygons
(look at HC's solitude).Hi Frank,
yes, "tendency mask" is definitely what I'm after, however I would
like to graphically create the mask rather than work with lists. The
main problem I'm trying to solve is how to set up a table GUI with two
adjustable lines in it. Ideas anyone?D.
Frank Barknecht wrote:
Hallo, Derek Holzer hat gesagt: // Derek Holzer wrote:
Just curious if anyone else has tried this before I have a go:
A table in which I can make an arbitrary number of breakpoints, for
both the top and bottom part of the range. See attached image for
clarity. The idea is that I can use the top set of breakpoints as
the upper limit of a random range, and the bottom set as the lower
limit.This is also called a "tendency mask" in the computer music
literature. Attached is a realisation I once did. You specify the two
tendencies as lists.--Friedenstr. 58 10249 Berlin (Deutschland) Tel +49 30 42020091 | Mob +49 162 6843570 Studio +49 30 69509190 jmmmpais@googlemail.com | skype: jmmmpjmmmp
Pd-list@iem.at mailing list UNSUBSCRIBE and account-management ->
http://lists.puredata.info/listinfo/pd-list
Man has survived hitherto because he was too ignorant to know how to
realize his wishes. Now that he can realize them, he must either change
them, or perish. -William Carlos Williams