Tagged Questions
4
votes
3answers
167 views
Algorithm for computing the plausibility of a function / Monte Carlo Method
I am writing a program that attempts to duplicate the algorithm discussed at the beginning of this article,
http://www-stat.stanford.edu/~cgates/PERSI/papers/MCMCRev.pdf
F is a function from char to ...
2
votes
1answer
780 views
How to vectorize a random walk simulation in Matlab
I am rewriting a monte carlo simulation model in Matlab with an emphasis on readability. The model involves many particles (represented as (x,y,z)) following a random walk over a small set of states ...
2
votes
1answer
182 views
R: MCMClogit confusion
Could anybody explain to me why
simulatedCase <- rbinom(100,1,0.5)
simDf <- data.frame(CASE = simulatedCase)
posterior_m0 <<- MCMClogit(CASE ~ 1, data = simDf, b0 = 0, B0 = 1)
always ...