Skip to content

Commit 5dccdd0

Browse files
authored
Update evalrational.js
Signed-off-by: Vishal Gaikwad <154438441+ivishal-g@users.noreply.github.com>
1 parent d10a4b5 commit 5dccdd0

1 file changed

Lines changed: 3 additions & 3 deletions

File tree

lib/node_modules/@stdlib/math/base/special/erfcinvf/scripts/evalrational.js

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,7 @@ var compileC = require( '@stdlib/math/base/tools/evalrational-compile-c' );
3939

4040
// Polynomial coefficients ordered in ascending degree...
4141

42-
// Coefficients for erfinv on [0, 0.5]:
42+
// Coefficients for erfinvf on [0, 0.5]:
4343
var P1 = [
4444
-5.0878195e-4,
4545
-8.3687482e-3,
@@ -65,7 +65,7 @@ var Q1 = [
6565
8.8621639e-4
6666
];
6767

68-
// Coefficients for erfinv for 0.5 > 1-x >= 0:
68+
// Coefficients for erfinvf for 0.5 > 1-x >= 0:
6969
var P2 = [
7070
-0.2024335,
7171
0.1052647,
@@ -89,7 +89,7 @@ var Q2 = [
8989
1.7211477
9090
];
9191

92-
// Coefficients for erfinv for sqrt( -log(1-x) );
92+
// Coefficients for erfinvf for sqrt( -log(1-x) );
9393
var P3 = [
9494
-0.1311028,
9595
-0.163794,

0 commit comments

Comments
 (0)