Compare distribution of three random integer algorithm.
python
sadrand
Vous ne pouvez pas sélectionner plus de 25 sujets Les noms de sujets doivent commencer par une lettre ou un nombre, peuvent contenir des tirets ('-') et peuvent comporter jusqu'à 35 caractères.

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"