m (Created page with "= Crash Course in Scientific Computing = == VI. Random Numbers == <syntaxhighlight lang="python"> import Pkg; Pkg.add("Distributions") </syntaxhighlight> Once this is done (...")
 
m
Line 23: Line 23:
 
using Distributions
 
using Distributions
 
</syntaxhighlight>
 
</syntaxhighlight>
 +
 +
* Random walk
  
 
{{WLP6}}
 
{{WLP6}}

Revision as of 12:26, 19 February 2021

Crash Course in Scientific Computing

VI. Random Numbers

import Pkg; Pkg.add("Distributions")

Once this is done (once for ever on a given machine), you can then be:

using Distributions

As a foretaste of a coming lecture on statistics, which is also something that computers are very good at, let us also install the Distribution package:

import Pkg; Pkg.add("Distributions")

Once this is done (once for ever on a given machine), you can then be:

using Distributions
  • Random walk