November 2017
Beginner
316 pages
6h 40m
English
As per the official documentation of distributions.jl, here are the features implemented by this package:
To start working with it, we need to install it using the command:
julia> Pkg.add("Distributions")
julia> using Distributions
After the installation, we are ready to use it over different distributions, the most common being normal distribution:
# setting the seed julia> srand(123) MersenneTwister(UInt32[0x0000007b], ...
Read now
Unlock full access