Skip to content

Controlling Stan behavior using parameters

brian-lau edited this page Sep 29, 2014 · 4 revisions

Stan has lots of parameters, which are all exposed in the Matlab interface help stan. These can all be set using name/value pairs. Case and ordering do not matter, and

fit = stan('model_code',model_code,'data',data,'verbose',true);

is the same as

fit = stan('data',data,'verbose',true,'model_code',model_code);

Clone this wiki locally