Compare distribution of three random integer algorithm.
sadrand
rust
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

plot.gp 212B

123456
  1. #!/usr/bin/gnuplot -p
  2. plot \
  3. "/tmp/rnd.dat" using 1:2 w l t "std-rand" lt rgb "green" \
  4. ,"/tmp/rnd.dat" using 1:3 w l t "mod-rand" lt rgb "blue" \
  5. , "/tmp/rnd.dat" using 1:4 w l t "prop-rand" lt rgb "red" \