Compare distribution of three random integer algorithm from random bytes.
c
sadrand
Du kannst nicht mehr als 25 Themen auswählen Themen müssen mit entweder einem Buchstaben oder einer Ziffer beginnen. Sie können Bindestriche („-“) enthalten und bis zu 35 Zeichen lang sein.

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" \