Added missing prior (Weibull).

time-shift
Stéphane Adjemian (Charybdis) 2017-06-06 20:37:41 +02:00
parent 119e5b4dfa
commit c8228d71d3
1 changed files with 3 additions and 1 deletions

View File

@ -25,6 +25,8 @@ PriorNames = strvcat(PriorNames,'Gaussian');
PriorNames = strvcat(PriorNames,'Inverted Gamma');
PriorNames = strvcat(PriorNames,'Uniform');
PriorNames = strvcat(PriorNames,'Inverted Gamma -- 2');
PriorNames = strvcat(PriorNames,'Dirichlet');
PriorNames = strvcat(PriorNames,'Weibull');
n = size(BayesInfo.name,1); % Numbe rof estimated parameters.
@ -71,7 +73,7 @@ for i=1:size(BayesInfo.name,1)
if ~isinf(ub(i))
UpperBound=min(UpperBound,ub(i));
end
case { 2 , 4 , 6 }
case { 2 , 4 , 6 , 8}
LowerBound = BayesInfo.p3(i);
if ~isinf(lb(i))
LowerBound=max(LowerBound,lb(i));