Skip to content
Permalink
master
Switch branches/tags

Name already in use

A tag already exists with the provided branch name. Many Git commands accept both tag and branch names, so creating this branch may cause unexpected behavior. Are you sure you want to create this branch?
Go to file
 
 
Cannot retrieve contributors at this time

logo

github-ci codecov license: MIT

An implementation of an observable for Markov Chain Monte Carlo simulations (like the currently out-dated MonteCarlo.jl).

During a Markov chain Monte Carlo simulation a Markov walker (after thermalization) walks through configuration space according to the equilibrium distribution. Typically, one measures observables along the Markov path, records the results, and in the end averages the measurements. MonteCarloObservable.jl provides all the necessary tools for conveniently conducting these types of measurements, including estimation of one-sigma error bars through binning or jackknife analysis.

Installation

In the REPL, switch to pkg mode (by pressing ]) and enter

add MonteCarloObservable

Alternatively, you can install the package per

using Pkg
Pkg.add("MonteCarloObservable")

Documentation

Look at the documentation for more information.