Sampling from a specific distribution in Julia
Here’s my second blog post on Julia. For a simple simulation I needed some randomly generated numbers from a normal distribution. In Julia, there are multiple ways to generate them. But to really customize the distributions, you need a random number generator (RNG). Because I found the documentation to be…