Polynomial regression: Difference between revisions

Content added Content deleted
(→‎{{header|Perl}}: DOES NOT WORK - inserted a caution and proof to save other future pain.)
Line 1,303: Line 1,303:


=={{header|Perl}}==
=={{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:-
## CAUTION - THE BELOW SCRIPT DOES NOT WORK. Example:-
Line 1,320: Line 1,323:
##
##



This script depends on the <tt>Math::MatrixReal</tt> CPAN module to compute matrix determinants.
<lang Perl>use strict;
use strict;
use warnings;
use warnings;
use feature 'say';
use feature 'say';