Windows Forms tutorial showing how to create form with button and how to register an event handler. When the button is clicked, the form changes its background color.
48 people like thisPosted: 13 years ago by Tomas Petricek
Normalized Random sequence generator conforming to the user supplied mean and sigma utilizing a "seed factory" instead of the default time of day. The Gaussian sequence is based on the central limit theory, averages together the flat distribution from the random generator built into .NET. Two examples of using normalRand are given to create infinite sequences of white and brown(ian) noise.
45 people like thisPosted: 13 years ago by Tony Lee
Shuffling array using Seq.fold
6 people like thisPosted: 10 years ago by Karlkim Suwanmongkol
A generic function that randomly permutes the elements of a sequence.
0 people like thisPosted: 7 years ago by Taha Hachana
Creates a random string of length `n` with characters available in `chars` array.
1 people like thisPosted: 4 years ago by Johan Irvall
Shuffle an array
2 people like thisPosted: 2 years ago by Josh DeGraw
The modified Random type is built on top of System.Random type. It has a member Seed which returns a seed and NextFloat has the same overloads as NextInt (Next in System.Random). The members should further support units of measure.
17 people like thisPosted: 13 years ago by Oldrich Svec
A function that takes a random subset from a seq<'T>.
1 people like thisPosted: 12 years ago by Taha Hachana
Magic 8 Ball in your console/terminal
2 people like thisPosted: 8 years ago by Fabio Galuppo
I have tested this against the C code I compiled on the PCG website (http://www.pcg-random.org/download.html). It seems to work fine. Nothing special, I just really loathe System.Random. Why has the de-facto RNG for the .NET library not been updated?
3 people like thisPosted: 5 years ago by Krunoslav Saho
Generates strings that are similar to the input, as measured by the probability of a symbol depending on preceding symbols. (Markov chain) The order, which defines how many preceding symbols to look at before placing another, is variable.
2 people like thisPosted: 3 years ago by Vandroiy
Pseudoword generator based on code from Evan Fosmark circa 2009.
0 people like thisPosted: 1 month ago by Phillip Trelford