Select Generators
Histogram (Primary)
Histogram (Comparison)
Write Your Own Generator
Define a function next() returning either a float 0..1 or an unsigned 32-bit integer.
// Example LCG (32-bit)
function next(){
state = (state * 1664525 + 1013904223) >>> 0; // update state
return state; // or return state / 2**32 for float
}
Function() (no DOM access).
Custom Output (first 200)
Custom Histogram
Convert & Inspect
Uses the most recent generated sequence (built-in or custom).