Polynomial regression: Difference between revisions

(→‎{{header|Perl}}: DOES NOT WORK - inserted a caution and proof to save other future pain.)
Line 1,303:
 
=={{header|Perl}}==
 
This script depends on the <tt>Math::MatrixReal</tt> CPAN module to compute matrix determinants.
<lang Perl>
 
## CAUTION - THE BELOW SCRIPT DOES NOT WORK. Example:-
Line 1,320 ⟶ 1,323:
##
 
 
This script depends on the <tt>Math::MatrixReal</tt> CPAN module to compute matrix determinants.
<lang Perl>use strict;
use warnings;
use feature 'say';
Anonymous user