initial_estimation_checks.m: Turn vector info into scalar

Related to a5b97a28a0 that needs to be reverted
time-shift
Johannes Pfeifer 2018-11-14 15:02:15 +01:00
parent 7b0ef3d080
commit c1b0bb5ee3
1 changed files with 1 additions and 1 deletions

View File

@ -106,7 +106,7 @@ end
test_for_deep_parameters_calibration(Model);
[lnprior,~,~,info]= priordens(xparam1,BayesInfo.pshape,BayesInfo.p6,BayesInfo.p7,BayesInfo.p3,BayesInfo.p4);
if info
if any(info)
fprintf('The prior density evaluated at the initial values is Inf for the following parameters: %s\n',BayesInfo.name{info,1})
error('The initial value of the prior is -Inf')
end