You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
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);