Cosmetic change. Removed loop.

time-shift
Stéphane Adjemian (Charybdis) 2015-12-08 14:35:12 +01:00
parent 85a4a082ad
commit 887e44f2b0
1 changed files with 5 additions and 7 deletions

View File

@ -192,14 +192,12 @@ end
% truncation parameters by default for normal distribution
k = find(bayestopt_.pshape == 3);
k1 = find(isnan(bayestopt_.p3(k)));
k2 = find(isnan(bayestopt_.p4(k)));
bayestopt_.p3(k(k1)) = -Inf*ones(length(k1),1);
k1 = find(isnan(bayestopt_.p4(k)));
bayestopt_.p4(k(k1)) = Inf*ones(length(k1),1);
for i=1:length(k)
bayestopt_.p6(k(i)) = bayestopt_.p1(k(i)) ;
bayestopt_.p7(k(i)) = bayestopt_.p2(k(i)) ;
bayestopt_.p5(k(i)) = bayestopt_.p1(k(i)) ;
end
bayestopt_.p4(k(k2)) = Inf*ones(length(k2),1);
bayestopt_.p6(k) = bayestopt_.p1(k);
bayestopt_.p7(k) = bayestopt_.p2(k);
bayestopt_.p5(k) = bayestopt_.p1(k);
% inverse gamma distribution (type 1)
k = find(bayestopt_.pshape == 4);