Estimated parameter specification -syntax

Dear all,

Is there a way to replace prior by symbol?

I want to replace:
esimated_params;
bet, normal_pdf, 1, 0.05;
end;

by:
prior_bet=1;
estimated_params;
bet,normal_pdf, prior_bet, 0.05;
end;

Cheers,
Mika

No, it isn’t possible. If you really want to do something like that, look at the way estimated_params is translated in the corresponding *.m file. You can set the estim_params_ structure directly in the *.mod file

Kind regards

Michel