Hey List
I want to be able to create some euclidean patterns for a mutable instruments hardware eurorack module
i need to know how to generate a list that looks like this
const prog_uint8_t node_0[] PROGMEM = { 255, 0, 0, 0, 0, 0, 145, 0, 0, 0, 0, 0, 218, 0, 0, 0, 72, 0, 36, 0, 182, 0, 0, 0, 109, 0, 0, 0, 72, 0, 0, 0, 36, 0, 109, 0, 0, 0, 8, 0, 255, 0, 0, 0, 0, 0, 72, 0, 0, 0, 182, 0, 0, 0, 36, 0, 218, 0, 0, 0, 145, 0, 0, 0, 170, 0, 113, 0, 255, 0, 56, 0, 170, 0, 141, 0, 198, 0, 56, 0, 170, 0, 113, 0, 226, 0, 28, 0, 170, 0, 113, 0, 198, 0, 85, 0, }; ?
so it's an 8X12 matrix of values between 0 and 255
is there a simple way in pure data that i can create such an animal?
Patrick Pagano B.S, M.F.A Audio and Projection Design Faculty Digital Worlds Institute University of Florida, USA (352)294-2020
-----BEGIN PGP SIGNED MESSAGE----- Hash: SHA1
Hello Patrick,
If you just need to create a random list with 96 values between 0 and 255, there is a [list-random] abstraction in 'list-abs' that can help yo u. ++
Jack
Le 01/08/2015 21:48, Pagano, Patrick a écrit :
Hey List
I want to be able to create some euclidean patterns for a mutable instruments hardware eurorack module
i need to know how to generate a list that looks like this
const prog_uint8_t node_0[] PROGMEM = { 255, 0, 0, 0, 0, 0, 145, 0, 0, 0, 0, 0, 218, 0, 0, 0, 72, 0, 36, 0, 182, 0, 0, 0, 109, 0, 0, 0, 72, 0, 0, 0, 36, 0, 109, 0, 0, 0, 8, 0, 255, 0, 0, 0, 0, 0, 72, 0, 0, 0, 182, 0, 0, 0, 36, 0, 218, 0, 0, 0, 145, 0, 0, 0, 170, 0, 113, 0, 255, 0, 56, 0, 170, 0, 141, 0, 198, 0, 56, 0, 170, 0, 113, 0, 226, 0, 28, 0, 170, 0, 113, 0, 198, 0, 85, 0, };
so it's an 8X12 matrix of values between 0 and 255
is there a simple way in pure data that i can create such an animal?
/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 mailing list UNSUBSCRIBE and account-management -> http://lists.puredata.info/listinfo/pd-list
-----BEGIN PGP SIGNED MESSAGE----- Hash: SHA1
Totally missed the topic, sorry for the noise. ++
Jack
Le 02/08/2015 00:20, Jack a écrit :
Hello Patrick,
If you just need to create a random list with 96 values between 0 and 255, there is a [list-random] abstraction in 'list-abs' that can help yo u. ++
Jack
Le 01/08/2015 21:48, Pagano, Patrick a écrit :
Hey List
I want to be able to create some euclidean patterns for a mutable instruments hardware eurorack module
i need to know how to generate a list that looks like this
const prog_uint8_t node_0[] PROGMEM = { 255, 0, 0, 0, 0, 0, 145, 0, 0, 0, 0, 0, 218, 0, 0, 0, 72, 0, 36, 0, 182, 0, 0, 0, 109, 0, 0, 0, 72, 0, 0, 0, 36, 0, 109, 0, 0, 0, 8, 0, 255, 0, 0, 0, 0, 0, 72, 0, 0, 0, 182, 0, 0, 0, 36, 0, 218, 0, 0, 0, 145, 0, 0, 0, 170, 0, 113, 0, 255, 0, 56, 0, 170, 0, 141, 0, 198, 0, 56, 0, 170, 0, 113, 0, 226, 0, 28, 0, 170, 0, 113, 0, 198, 0, 85, 0, };
so it's an 8X12 matrix of values between 0 and 255
is there a simple way in pure data that i can create such an animal?
/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 mailing list UNSUBSCRIBE and account-management -> http://lists.puredata.info/listinfo/pd-list
Pd-list@lists.iem.at mailing list UNSUBSCRIBE and account-management -> http://lists.puredata.info/listinfo/pd-list
Hi Patrick,
I"ve made an Euclidean abstraction some time ago... Maybe you can modify it to suit your needs.
It's in my todo list to put my pd objects on a server...!
Olivier
On Sat, Aug 1, 2015 at 3:48 PM, Pagano, Patrick pat@digitalworlds.ufl.edu wrote:
Hey List
I want to be able to create some euclidean patterns for a mutable instruments hardware eurorack module
i need to know how to generate a list that looks like this
const prog_uint8_t node_0[] PROGMEM = { 255, 0, 0, 0, 0, 0, 145, 0, 0, 0, 0, 0, 218, 0, 0, 0, 72, 0, 36, 0, 182, 0, 0, 0, 109, 0, 0, 0, 72, 0, 0, 0, 36, 0, 109, 0, 0, 0, 8, 0, 255, 0, 0, 0, 0, 0, 72, 0, 0, 0, 182, 0, 0, 0, 36, 0, 218, 0, 0, 0, 145, 0, 0, 0, 170, 0, 113, 0, 255, 0, 56, 0, 170, 0, 141, 0, 198, 0, 56, 0, 170, 0, 113, 0, 226, 0, 28, 0, 170, 0, 113, 0, 198, 0, 85, 0, };
so it's an 8X12 matrix of values between 0 and 255
is there a simple way in pure data that i can create such an animal?
*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 mailing list UNSUBSCRIBE and account-management -> http://lists.puredata.info/listinfo/pd-list
Hi,
On 02/08/15 03:48, Pagano, Patrick wrote:
i need to know how to generate a list that looks like this so it's an 8X12 matrix of values between 0 and 255 is there a simple way in pure data that i can create such an animal?
The following lol-script* will do this:
lol loadbng;
range 12;
range 8;
bng;
random 255;
gathern 8;
This will output 12 lists of 8 random integers between 0 and 255.
If you want a single list with all of the values add the following object to the bottom of the script:
gathern 12;
Cheers,
Chris.
How do i get them into a text file? i want them so i can use them later w/o having to grab them from the screen
Patrick Pagano B.S, M.F.A Audio and Projection Design Faculty Digital Worlds Institute University of Florida, USA (352)294-2020
From: Chris McCormick chris@mccormick.cx Sent: Monday, August 3, 2015 12:09 AM To: Pagano, Patrick; pd-list@iem.at Subject: Re: [PD] Creating Eucliadean note patterns with pd for Mutable Instruments Grids
Hi,
On 02/08/15 03:48, Pagano, Patrick wrote:
i need to know how to generate a list that looks like this so it's an 8X12 matrix of values between 0 and 255 is there a simple way in pure data that i can create such an animal?
The following lol-script* will do this:
lol loadbng;
range 12;
range 8;
bng;
random 255;
gathern 8;
This will output 12 lists of 8 random integers between 0 and 255.
If you want a single list with all of the values add the following object to the bottom of the script:
gathern 12;
Cheers,
Chris.
Hello,
On Mon, Aug 03, 2015 at 08:07:18PM +0000, Pagano, Patrick wrote:
How do i get them into a text file? i want them so i can use them later w/o having to grab them from the screen
lol loadbng; range 12; range 8; bang; random 255; gathern 8; list prepend add; list trim;
Pipe that into a [textfile] and then send a [write 12x8.txt( message into the text file.
Pd probably isn't the best tool for this job.
Cheers,
Chris.
- lolPd = https://github.com/chr15m/lolPd