Browse Search Popular Register Upload Rules User list Login:
Search:
Random Number Generators

Image:
screenshot of the scene

Author: Xray

Group: Default

Filesize: 88.62 kB

Date added: 2023-01-04

Rating: 6.1

Downloads: 1958

Views: 335

Comments: 9

Ratings: 3

Times favored: 0

Made with: Algodoo v2.1.0

Tags:

Scene tag

Random number generator demonstrations for Thyme script users.

Update: Added a note that explains the difference between the scripts that plot the data points, and the actual random number generators that generate the random numbers.

Update: Enhanced the aesthetics of the scene in order to improve clarity of the information.
Last edited at 2023/09/15 18:41:33 by Xray
Please log in to rate this scene
edit
Similar scenes
Title: Full Pull
Rating: 6.1111
Filesize: 124.23 kB
Downloads: 3231
Comments: 2
Ratings: 3
Date added: 2014/02/17 09:25:12
Made with: Algodoo v2.1.0
Rating: rated 6.1
download
Title: Random Number Device
Rating: 5
Filesize: 202.84 kB
Downloads: 176
Comments: 0
Ratings: 1
Date added: 2015/08/21 01:16:41
Made with: Algodoo v2.1.0
Rating: rated 5
download
Title: Random Number Value (Min and Max)
Rating: 5
Filesize: 28.7 kB
Downloads: 249
Comments: 3
Ratings: 1
Date added: 2020/09/03 18:08:50
Made with: Algodoo v2.1.0
Rating: rated 5
download
Title: Random Number Value V2
Rating: 5
Filesize: 50.22 kB
Downloads: 1043
Comments: 0
Ratings: 1
Date added: 2020/11/26 00:52:00
Made with: Algodoo v2.1.0
Rating: rated 5
download
Title: Random number generator device
Rating: 5.8889
Filesize: 35.14 kB
Downloads: 655
Comments: 2
Ratings: 3
Date added: 2009/12/10 16:30:48
Made with: Algodoo before v1.8.5
Rating: rated 5.9
download
Title: Random generator
Rating: 6.4
Filesize: 37.39 kB
Downloads: 521
Comments: 4
Ratings: 4
Date added: 2010/04/25 08:14:19
Made with: Algodoo before v1.8.5
Rating: rated 6.4
download
This would have been great to know a few years ago.
I had searched at least 200 or so scenes a few years ago trying to find one with random number generation, and I finally found one.

Just imagine how much easier my search would have been if this scene existed back then, lol.
I agree. It takes time and experience to learn new things, and that's what I love about Algodoo and Thyme Script. I learn new things about it quite often, and that's what keeps me interested! :)
Good to know. 8|
when i first read the title, i read "Random Name Generator"
That's what happens when your brain becomes random. :lol:
Is there a command to make random integer numbers on thyme script? :huh:
You can create integer values from the random number generators by multiplying the random values by 100 and then use the integer function like this:

math.toint(((rand.uniform01 * 100) + 0.5))

That script will create random integers between 0 and 100
Last edited at 2023/09/16 04:02:32 by Xray
"rand.uniform01", where did you get this from?
Algodoo. It's one of the intrinsic random number functions.