On Thu Nov 21 01:49:45 2019, jidanni@jidanni.org wrote:
Show quoted text> man Math::Complex says
> $j = ((root(1, 3))[1];
> That is a syntax error.
Trivial patch:
diff --git a/cpan/Math-Complex/lib/Math/Complex.pm b/cpan/Math-Complex/lib/Math/Complex.pm
index ea3e006fe5..b7badbbd16 100644
--- a/cpan/Math-Complex/lib/Math/Complex.pm
+++ b/cpan/Math-Complex/lib/Math/Complex.pm
@@ -1847,7 +1847,7 @@ number mathematicians call C<j> such that:
is a simple matter of writing:
- $j = ((root(1, 3))[1];
+ $j = (root(1, 3))[1];
The I<k>th root for C<z = [r,t]> is given by: