# HG changeset patch # User Markus Mützel # Date 1683019978 -7200 # Node ID 217a35f2a5892624ce14d0752328ae74f8d10b00 # Parent a46c30311908237a253b8451f6b8e0d45547b44f betaincinv.m: Slightly increase test tolerance (for macOS 13). * scripts/specfun/betaincinv.m: Slightly increase test tolerance to pass on macOS 13. diff -r a46c30311908 -r 217a35f2a589 scripts/specfun/betaincinv.m --- a/scripts/specfun/betaincinv.m Sun Apr 30 16:54:48 2023 +0200 +++ b/scripts/specfun/betaincinv.m Tue May 02 11:32:58 2023 +0200 @@ -262,7 +262,7 @@ %! a = [0.1:0.1:1]; %! [x,a,b] = ndgrid (x,a,a); %! xx = betaincinv (betainc (x, a, b, "upper"), a, b, "upper"); -%! assert (xx, x, 5e-15); +%! assert (xx, x, 24*eps); ## Test the conservation of the input class %!assert (class (betaincinv (0.5, 1, 1)), "double")