Skip to content
Snippets Groups Projects
Verified Commit 5fa8d26c authored by Johannes Pfeifer's avatar Johannes Pfeifer Committed by Sébastien Villemot
Browse files

identification_analysis.m: Fix bug introduced in 60d95b65

We already used a variable called offset

(cherry picked from commit b615d2d7)
parent 32934398
Branches
Tags
No related merge requests found
......@@ -124,20 +124,20 @@ if info(1)==0
ide_strength_J_prior=NaN(1,nparam);
if init
ide_uncert_unnormaliz = NaN(1,nparam);
offset=0;
if prior_exist
offset_prior=0;
if ~isempty(estim_params_.var_exo)
normaliz_prior_std = bayestopt_.p2(1:estim_params_.nvx)'; % normalize with prior standard deviation
offset=offset+estim_params_.nvx+estim_params_.nvn;
offset_prior=offset_prior+estim_params_.nvx+estim_params_.nvn;
else
normaliz_prior_std=[];
end
if ~isempty(estim_params_.corrx)
normaliz_prior_std = [normaliz_prior_std bayestopt_.p2(offset+1:offset+estim_params_.ncx)']; % normalize with prior standard deviation
offset=offset+estim_params_.ncx+estim_params_.ncn;
normaliz_prior_std = [normaliz_prior_std bayestopt_.p2(offset_prior+1:offset_prior+estim_params_.ncx)']; % normalize with prior standard deviation
offset_prior=offset_prior+estim_params_.ncx+estim_params_.ncn;
end
if ~isempty(estim_params_.param_vals)
normaliz_prior_std = [normaliz_prior_std bayestopt_.p2(offset+1:offset+estim_params_.np)']; % normalize with prior standard deviation
normaliz_prior_std = [normaliz_prior_std bayestopt_.p2(offset_prior+1:offset_prior+estim_params_.np)']; % normalize with prior standard deviation
end
% normaliz = max([normaliz; normaliz1]);
% normaliz1(isinf(normaliz1)) = 1;
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment