Unit test lpdfgweibull.m: adjust upper integration bound under Octave

Does not correctly integrate otherwise as more than 99% of support is 0
time-shift
Johannes Pfeifer 2017-01-18 11:01:13 +01:00
parent ce4ab7f7d8
commit 875497bc71
1 changed files with 1 additions and 1 deletions

View File

@ -279,7 +279,7 @@ end
%$
%$ try
%$ if isoctave
%$ s = quadv(xdens, .0000000001, 100000,1e-10)
%$ s = quadv(xdens, .0000000001, 20,1e-10)
%$ else
%$ s = integral(xdens, 0, 100000);
%$ end