Hey all,
I can't seem to find a for loop for PD. Abstraction or external.
Ideally it would be nested so that you could loop through n number of dimentions. You just tell it the start end and step for each dimention:
for(x=0; x<=10; x++) { for(y=0; x<=10; y++) { toOutInt(0, x); toOutInt(1, y); } }
Or something the like...
Yes I'm doing too much matrix stuff!
I can whip up an external soon enough, but I figured somone has already beat me to it.
Thanks Ben
On Sat, 8 Nov 2003, B. Bogart wrote:
Hey all, I can't seem to find a for loop for PD. Abstraction or external. Ideally it would be nested so that you could loop through n number of dimentions. You just tell it the start end and step for each dimention: Or something the like... Yes I'm doing too much matrix stuff!
Hi, GridFlow/PD supports:
[for] as jMax emulation : [for 0 3 1] produces 3 messages: 0, 1, 2
[@for] in scalar mode : [@for 0 3 1] produces 1 message, a Grid of size 3: 0 1 2
[@for] in vector mode : [@for {0 0} {4 3} {1 1}] produces 1 message, a Grid of size 4*3*2: (0,0) (0,1) (0,2) (1,0) (1,1) (1,2) (2,0) (2,1) (2,2) (3,0) (3,1) (3,2)
the latter can be chunked into individual messages using [@import] to reframe the data and [@export_list] to produce a list per grid.
Mathieu Bouchard http://artengine.ca/matju
There's an "until" object in Pd that I use to make all sorts of "for" and "while" constructions. I just looked, and oddly enough there's nothing about it in the Pd tutorial... I'll add something for the next release.
cheers Miller
On Sat, Nov 08, 2003 at 11:41:57AM -0500, B. Bogart wrote:
Hey all,
I can't seem to find a for loop for PD. Abstraction or external.
Ideally it would be nested so that you could loop through n number of dimentions. You just tell it the start end and step for each dimention:
for(x=0; x<=10; x++) { for(y=0; x<=10; y++) { toOutInt(0, x); toOutInt(1, y); } }
Or something the like...
Yes I'm doing too much matrix stuff!
I can whip up an external soon enough, but I figured somone has already beat me to it.
Thanks Ben
PD-list mailing list PD-list@iem.at http://iem.at/cgi-bin/mailman/listinfo/pd-list
Hello,
I'm new to pd, but have been working with object oriented enviroments like this for quite sometime. Everything seems simple enough, now that I've read the foundation of operation's guide on Miller's site, but I've still got one nagging question:
Where is a list of the available modules for use?
Maybe I'm overlooking the obvious, as I'm not in my studio or near my g4 at the moment (running .36 on osx), but I figured the question could be floating in these ethers till I have the option of hunting such a list down.
Secondly, are there any instrument creation tutorials out on the net (or hidden with the software) aside from the basics mentioned in Miller's guide (which is the only documentation I'm aware of at the moment)? I've seen the drum synth tutorial on the wiki, but that's not quite what I need (I use hardware modulars for drums anyhow). My interest in the program primarily encompasses sample manipulation, granular resynthesis, fft filtering, and effect creation (not for stand alone though, that's what pluggo 3.1 is for.. when it is released in a week or so for os x). A basic synth construction tutorial would be nice to ease into the work flow, but anything sampler related would be far more my speed (maybe a wavetable or look-up synth program?)..
Is it possible to create vst effects to be hosted in cubase via PD? Just curious on that point, I would assume no.
===== "Freedom is a hallucination created by a pathological lack of Paranoia"
Do you Yahoo!? Protect your identity with Yahoo! Mail AddressGuard http://antispam.yahoo.com/whatsnewfree
Hallo, Umiachi hat gesagt: // Umiachi wrote:
I'm new to pd, but have been working with object oriented enviroments like this for quite sometime. Everything seems simple enough, now that I've read the foundation of operation's guide on Miller's site, but I've still got one nagging question:
Where is a list of the available modules for use?
Right-click (or use some modifier key if you don't have a right mouse button) on the background of a patch and you can select to show a list of all built-in objects. Currently this only shows built-ins, though.
(Actually it shows the file that on Linux is located in "/usr/lib/pd/doc/5.reference/0.INTRO.txt". This is extensible ifor example by something like:
$ strings /usr/lib/pd/extra/* | grep setup$ | sed -e "s/_tilde/\~/" |
sed -e "s/_setup$//" >> /usr/lib/pd/doc/5.reference/0.INTRO.txt
or similar...)
Secondly, are there any instrument creation tutorials out on the net (or hidden with the software) aside from the basics mentioned in Miller's guide (which is the only documentation I'm aware of at the moment)? I've seen the drum synth tutorial on the wiki, but that's not quite what I need (I use hardware modulars for drums anyhow). My interest in the program primarily encompasses sample manipulation, granular resynthesis, fft filtering, and effect creation (not for stand alone though, that's what pluggo 3.1 is for.. when it is released in a week or so for os x). A basic synth construction tutorial would be nice to ease into the work flow, but anything sampler related would be far more my speed (maybe a wavetable or look-up synth program?)..
I agree that some tutorials in more practical directions are missing. I plan to devote the whole or at least a very large part of december to something very close to this. Stay tuned! In the meantime you could abuse Max tutorials for some general principles. www.creativesynth.com has some nice tuts in that area. Maybe some (Ex-)Maxers here can point you to some more.
Is it possible to create vst effects to be hosted in cubase via PD? Just curious on that point, I would assume no.
It is possible. J. Sarlo wrote a vst-wrappper that allows Pd patches to be used as a VST effect (not as VSTi, though!). I never tried that, for a lack of MS-Windows or a Mac.
Frank Barknecht _ ______footils.org__
I came across the Pure Database recently - I even have a print-out of the list of objects - but I can't find it on the web. I checked at pure-data.org to no avail. Maybe you will have more luck.
--Richard.
Where is a list of the available modules for use?
Richard Bowers wrote:
I came across the Pure Database recently - I even have a print-out of the list of objects - but I can't find it on the web. I checked at pure-data.org to no avail. Maybe you will have more luck.
--Richard.
Where is a list of the available modules for use?
PD-list mailing list PD-list@iem.at http://iem.at/cgi-bin/mailman/listinfo/pd-list
Or perhaps more memorable: http://pd.iem.at/pdb
.hc
On Mon, 10 Nov 2003, Josh Steiner wrote:
Richard Bowers wrote:
I came across the Pure Database recently - I even have a print-out of the list of objects - but I can't find it on the web. I checked at pure-data.org to no avail. Maybe you will have more luck.
--Richard.
Where is a list of the available modules for use?
PD-list mailing list PD-list@iem.at http://iem.at/cgi-bin/mailman/listinfo/pd-list
-- ____________________________________________________ independent u.s. drum'n'bass -- http://vitriolix.com
PD-list mailing list PD-list@iem.at http://iem.at/cgi-bin/mailman/listinfo/pd-list
zen
\
\
\[D[D[D[D