Guest User

Untitled

a guest
Feb 16th, 2019
87
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.29 KB | None | 0 0
  1. const nxpoints = 10000
  2. const nypoints = 10000
  3.  
  4. // Create a normal distribution for x.
  5. distx := distuv.Normal{
  6. Mu: 0,
  7. Sigma: 1,
  8. Src: rand.New(rand.NewSource(0)),
  9. }
  10. // Create a normal distribution for y.
  11. disty := distuv.Normal{
  12. Mu: 0,
  13. Sigma: 1,
  14. Src: rand.New(rand.NewSource(0)),
  15. }
Add Comment
Please, Sign In to add comment