1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
|
pragma config.flags("ValidateUdf", "None");
pragma config.flags("LLVM_OFF");
SELECT
Math::ErfInv(1e-8),
Math::ErfInv(1e-4),
Math::ErfInv(0.1),
Math::ErfInv(0.25),
Math::ErfInv(0.5),
Math::ErfInv(0.75),
Math::ErfInv(0.9),
Math::ErfInv(0.99),
Math::ErfInv(0.9999999),
Math::ErfInv(0.99999999),
Math::ErfInv(0.999999999),
Math::ErfInv(0.9999999999),
Math::ErfInv(0),
Math::ErfInv(1 + Math::Eps()),
Math::ErfInv(-1 - Math::Eps()),
Math::ErfInv(1),
Math::ErfInv(-1),
Math::ErfcInv(2),
Math::ErfcInv(0),
Math::ErfcInv(2 + 2 * Math::Eps()),
Math::ErfcInv(-Math::Eps());
|