Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

4
votes
7answers
1k views

Is Matlab (vs. C/FORTRAN) a respectable language for a professional mathematical researcher of the 21st century?

I am a die hard user of matlab, mostly because this is what I learned first and I have not encountered a problem with a significant enough difference to switch. I come from numerical ...
3
votes
3answers
126 views

How to define custom distributions in JAGS?

I am using JAGS for simulating some MCMC distributions. I see the support for a sizeable set of distributions. But, I would like to sample out of a specific distribution that is not defiend in JAGS. ...
3
votes
2answers
425 views

Templated Barton and Nackman Trick Problems

I'm trying to implement class using the Barton and Nackman trick to avoid dynamic dispatch. (I'm writing MCMC code where performance matters.) I'm not a C++ expert but the basic trick is working for ...
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 ...
1
vote
3answers
28 views

Ordered 'for' loop efficiency in OpenMP

I am trying to parallelise a single MCMC chain which is sequential in nature and hence, I need to preserve the order of iterations being executed. For this purpose, I was thinking of using an 'ordered ...
0
votes
0answers
168 views

MCMC to generate directed graphs with conserved degree sequence

I am trying to use networkx to generate simple graphs with a conserved degree sequence. To enforce the simple graph properties (no self loops, multiple edges), I use the double_edge_swap function to ...