Skip to content

Commit 9a4033c

Browse files
committed
fix: use correct function name
1 parent 23f2db6 commit 9a4033c

File tree

1 file changed

+1
-1
lines changed
  • lib/node_modules/@stdlib/math/base/special/ellipe/src

1 file changed

+1
-1
lines changed

Diff for: lib/node_modules/@stdlib/math/base/special/ellipe/src/main.c

+1-1
Original file line numberDiff line numberDiff line change
@@ -356,7 +356,7 @@ double stdlib_base_ellipe( const double m ) {
356356
td = 0.95 - x;
357357
kdm = poly_p11( td );
358358
edm = poly_p12( td );
359-
km = ellipe( x );
359+
km = stdlib_base_ellipe( x );
360360

361361
// To avoid precision loss near 1, we use Eq. 33 from Fukushima (2009):
362362
t = ( STDLIB_CONSTANT_FLOAT64_HALF_PI + ( km * (kdm - edm) ) ) / kdm;

0 commit comments

Comments
 (0)