I’m running a simple example of MH-MCMC in Julia, and I wonder is there is any function out there that can sample from a defined distribution using MvNorm().
basically, instead of doing: x rand(Mvnorm(mu, sigma)) i want mcmcsampler(MvNorm(mu, sigma))
Yeah, Sort of. I need to specify the model using a macro? But i want something more general purpose. Otherwise i guess ill have to write the sampler from scratch?