Add saving of parameter names to make loading of mh_mode-file compatible with mode_file option

time-shift
Johannes Pfeifer 2014-07-02 15:20:07 +02:00
parent f4f7b8d0a1
commit 7f15295cda
1 changed files with 3 additions and 2 deletions

View File

@ -32,7 +32,7 @@ function [posterior_mean,posterior_covariance,posterior_mode,posterior_kernel_at
% You should have received a copy of the GNU General Public License
% along with Dynare. If not, see <http://www.gnu.org/licenses/>.
global M_ options_ estim_params_
global M_ options_ estim_params_ bayestopt_
n = estim_params_.np + ...
@ -76,5 +76,6 @@ end
xparam1 = posterior_mode';
hh = inv(posterior_covariance);
fval = posterior_kernel_at_the_mode;
parameter_names = bayestopt_.name;
save([M_.fname '_mh_mode.mat'],'xparam1','hh','fval');
save([M_.fname '_mh_mode.mat'],'xparam1','hh','fval','parameter_names');