Documentation fixes to recent sample commit

This commit is contained in:
btracey
2015-06-01 18:05:33 -07:00
parent 0c8435533f
commit 9dbef7746c
3 changed files with 7 additions and 6 deletions

View File

@@ -26,7 +26,7 @@ func ExampleMetropolisHastings_samplingRate() {
tmp := make([]float64, max(rate, burnin))
// First deal with burnin
// First deal with burnin.
tmp = tmp[:burnin]
MetropolisHastings(tmp, initial, target, proposal, nil)
// The final sample in tmp in the final point in the chain.