Computation of Composite Parameters
Posted: Tue May 31, 2011 7:18 am
Hello,
What is the difference between using the two options for computing a composite parameter betaP:
1. in *.mod file
2. in *_steadystate.m file
I think the two options are quivalent. Here, I on purpose made a simple example. But one could have a more complicated composite parameter expressed in terms of some steady state ratios targeted in calibration, or in terms of some other parameters that could be estimated by Bayesian estimation.
Thank you!
Rasa
What is the difference between using the two options for computing a composite parameter betaP:
1. in *.mod file
- Code: Select all
# betaP = 1/(1+betta_rateP/100);
2. in *_steadystate.m file
- Code: Select all
betaP = 1/(1+betta_rateP/100);
idx_betaP= strmatch(betaP',M_.param_names,'exact');
M_.params(idx_betaP) = betaP;
I think the two options are quivalent. Here, I on purpose made a simple example. But one could have a more complicated composite parameter expressed in terms of some steady state ratios targeted in calibration, or in terms of some other parameters that could be estimated by Bayesian estimation.
Thank you!
Rasa