From a93b2920901d7444c13b704347d956fa662dcc4a Mon Sep 17 00:00:00 2001 From: Charles Karney Date: Sat, 21 Oct 2023 10:18:04 -0400 Subject: [PATCH] Change m^2 -> m in definition of am(u). --- README.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index 034dfc1..6161550 100644 --- a/README.md +++ b/README.md @@ -68,10 +68,10 @@ Moiseev I., Elliptic functions for Matlab and Octave, (2008), GitHub repository, *General definition:* ``` -u = Integral(1/sqrt(1-m^2*sin(theta)^2), 0, phi); +u = Integral(1/sqrt(1-m*sin(theta)^2), 0, phi); Sn(u) = sin(phi); Cn(u) = cos(phi); -Dn(u) = sqrt(1-m^2*sin(phi)^2); +Dn(u) = sqrt(1-m*sin(phi)^2); ``` _Depends on_ `AGM`, `ELLIPKE`.