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.

plot3d.gp 218B

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