PURE DATA: 08 Random Numbers

  Рет қаралды 45,658

cheetomoskeeto

cheetomoskeeto

Күн бұрын

Пікірлер: 42
@soulbassproject
@soulbassproject 9 жыл бұрын
This video is great! I have just added further randomisation to the example and I now have a big smile on my face. Thanks!
@squelette20
@squelette20 6 жыл бұрын
I never thought I'd be able to understand this kind of thing someday. Thank you so much !
@UnrealOrnament
@UnrealOrnament 14 жыл бұрын
a really clear, informative video, thanks!
@cheetomoskeeto
@cheetomoskeeto 14 жыл бұрын
@09scatto good catch - after 1:34 it is a [tgl] (toggle). that is necessary because [metro] expects a boolean to start/stop it (a 1 or 0).
@reubenriisager9852
@reubenriisager9852 9 жыл бұрын
How do I attach a randomizer to a v-slider on the oscillator??
@bENahAROni
@bENahAROni 9 жыл бұрын
when i add a metro object and , lets say i put the arrgument 100 it dosne seems to go as fat as the tutorial shows..[metro 100] i wonder if the reason isthat i use a pc and not a mac?
@joaquinvegasanchez7868
@joaquinvegasanchez7868 8 жыл бұрын
Hi! what version of PD are you using? cause objects like "Counter" "randomF" and "tripleRand" doesn't work :s... i have PD-ext version.0.47
@Sowo7
@Sowo7 7 жыл бұрын
youn can find ''counter'' here github.com/porres/pd-cyclone/releases if you don't have pd extended version.
@jewfinigan863
@jewfinigan863 6 жыл бұрын
Or just get Purrdata, it has all the things
@BiddlyMusic
@BiddlyMusic 12 жыл бұрын
Is there a way of setting a minimum level for the drunk patch?
@cheetomoskeeto
@cheetomoskeeto 12 жыл бұрын
There are a few different ways to do that. I'd use a [moses 1] in combination with [== 1] and bangs
@bluevioletalien
@bluevioletalien 12 жыл бұрын
Is there a way to do something like [drunk] in pd vanilla?
@andremadethis
@andremadethis 4 жыл бұрын
is randomF exclusive to pd extended? I encounter "couldn't create" errors in pd vanilla.
@cheetomoskeeto
@cheetomoskeeto 4 жыл бұрын
Yes. When these were created 11 years ago, [randomF ] was a 3rd party external included with Pd Extended
@submach1ne
@submach1ne 11 жыл бұрын
Is it bad if I skip a video? I didn't feel like downloading the application in the previous video.
@do00p
@do00p 6 жыл бұрын
I couldnt get the output of metronome to work as a counter then mod and try to count the measures. My == 8 or ==4 after the mod is not working the bang keeps triggering. Is it checking for type match when I just do == with symbols. The help file works fine. I keep getting an error because after the mod the bang needs to be filter out. I will try to post to my github.com/punkroku/crapExchange in pureData folder
@dennipeter160294
@dennipeter160294 5 жыл бұрын
What if i wanted random numbers within a range. Say between 50 - 100. ( And not 0 -100) ? How would you do that?
@cheetomoskeeto
@cheetomoskeeto 5 жыл бұрын
Dennis Peter generate random number between 0 - 50 and the add 50 to the output
@LeirgaukThe2nd
@LeirgaukThe2nd 10 жыл бұрын
This is really weird, but my Pd Extended (and yes, it IS Extended!) doesn't have a 'drunk' object. Any idea why?
@muhammadqumail3834
@muhammadqumail3834 5 жыл бұрын
That is because its in a library which you have to import. It's not there by default (at least in my case), i found it from a simple Google search and imported the library
@gerardwareham8585
@gerardwareham8585 10 жыл бұрын
How would i get PD to make a random choice from a list of numbers?
@cheetomoskeeto
@cheetomoskeeto 10 жыл бұрын
You'd store the numbers in an array or table and then choose a random index of the array, thereby getting the number. So, if your array called [mynumbers] had 10 numbers stored in it, you'd use [random 10] along with [tabread mynumbers] to pull a random number from the array of numbers. You can do the same thing with a list using [unpack] and storing the numbers into [int ] objects but it takes much more work to accomplish.
@gaoyuan5220
@gaoyuan5220 6 жыл бұрын
Hi, my pd is unable to create [seed] object. Which library include this object?
@hungrydave1977
@hungrydave1977 6 жыл бұрын
I think seed is a message
@manolitosanchez
@manolitosanchez 5 жыл бұрын
Hello and thank you for the video!! =) I wonder, how did you hook Pd to the nice sound engine?
@BiddlyMusic
@BiddlyMusic 12 жыл бұрын
ah yes thank you. also, I can't remember which video you show this on, but I'm trying to work out how to make a patch so that when the toggle is on, it performs a certain function, but when it's off it performs a different function (basically, 1 making the patch do something, and 0 making it do something else). Do you mind referring me to that video or just telling me? :)
@matiasjl7
@matiasjl7 3 жыл бұрын
Great video! I need a random number between 2000 and 8000. I don't know how put a range where don't begin from zero. Thanks for all!
@matiasjl7
@matiasjl7 3 жыл бұрын
I had to write it to find a solution: [random 6001] > [+ 2000], a simple addition to result :D
@cheetomoskeeto
@cheetomoskeeto 3 жыл бұрын
@@matiasjl7 that is indeed the solution.
@cheetomoskeeto
@cheetomoskeeto 12 жыл бұрын
offset it through math (so if 0 is the current minimum, add the end result by the desired minimum)
@macramole
@macramole 3 жыл бұрын
very useful !!
@dagamusik
@dagamusik 7 жыл бұрын
Fantastic videos! But i have a question. Isn't wrong saying 0 to 50 and 49 to 100 are 50% - 50% probabilities? Doesn't 0 count?
@cheetomoskeeto
@cheetomoskeeto 7 жыл бұрын
Correct; it is 51/49.
@vinayseth1114
@vinayseth1114 10 жыл бұрын
a) What does 'Seed' mean? b) How do I make Random start from a non-zero number?
@rafaelhernandez2096
@rafaelhernandez2096 10 жыл бұрын
A.) To "seed" a random number is to provide it an input whereby future results are then determined. In a way, it is producing a determined result using whatever algorithm the random number generator is built upon. B.) If you want a random number between X and Y where X is not zero, add an offset after the random object. For example, a random number between 5 and 10 is really a random number between 0 and 5 with an offset of 5 added afterwards.
@vinayseth1114
@vinayseth1114 10 жыл бұрын
Rafael Hernandez hey thanks!
@moulinexish
@moulinexish 7 жыл бұрын
How do I add an offset?
@djstevegremixer7489
@djstevegremixer7489 4 жыл бұрын
Wicked!
@victormacedo582
@victormacedo582 11 жыл бұрын
im getting different numbers at minute 02:55 :S, I have followed the right steps, why is this happening?
@ct2034
@ct2034 5 жыл бұрын
:D
@nohface7565
@nohface7565 Ай бұрын
Theory: any observed chaos is automatically ordered to the observers energy and mind.
@wurnotantmlb
@wurnotantmlb 5 жыл бұрын
I seriously can't stand this guy, he never went through the actual pd examples in pd browser itlself...just buying a macosh doesn't makes you a doctor I guess
PURE DATA: 09 Send & Receive
15:55
cheetomoskeeto
Рет қаралды 33 М.
Random within Random | Pure Data Tutorial
5:03
Sound Codex
Рет қаралды 1,5 М.
Cheerleader Transformation That Left Everyone Speechless! #shorts
00:27
Fabiosa Best Lifehacks
Рет қаралды 16 МЛН
Sigma Kid Mistake #funny #sigma
00:17
CRAZY GREAPA
Рет қаралды 30 МЛН
黑天使被操控了#short #angel #clown
00:40
Super Beauty team
Рет қаралды 61 МЛН
PURE DATA: 07 Lists with ReacTIVision
13:58
cheetomoskeeto
Рет қаралды 35 М.
46. Probability 3: Random walk in Pure Data
9:41
QCGInteractiveMusic
Рет қаралды 2,1 М.
9. Frequency Modulation in Pure Data
14:57
QCGInteractiveMusic
Рет қаралды 9 М.
3. Graphical User Interfaces in Pure Data
18:16
QCGInteractiveMusic
Рет қаралды 14 М.
Pd for Airports (Creating Ambient Music in Pure Data) | Simon Hutchinson
18:03
PURE DATA: 27 Video Playback with GEM
15:17
cheetomoskeeto
Рет қаралды 46 М.
PURE DATA: 10 The Expression Object [expr ]
24:21
cheetomoskeeto
Рет қаралды 32 М.
PURE DATA: Making it Work 01, a Simple Sequencer
7:36
cheetomoskeeto
Рет қаралды 83 М.
PURE DATA: 13 Tables and Arrays
17:17
cheetomoskeeto
Рет қаралды 49 М.