Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
Remove debugging lines from fix to sf.net #256
  • Loading branch information
devel-chm committed Mar 16, 2015
1 parent fc32b6b commit a786102
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion Lib/Fit/Polynomial.pm
Expand Up @@ -107,8 +107,10 @@ sub PDL::fitpoly1d {

# Fitted coefficients vector

# $a = matinv($C) x $Y;
## $a = matinv($C) x $Y;
## print "matinv: \$C = $C, \$Y = $Y, \$a = $a\n";
$a = inv($C) x $Y; # use inv() instead of matinv() to avoid Slatec dependency
## print "inv: \$C = $C, \$Y = $Y, \$a = $a\n";

# Fitted data

Expand Down

0 comments on commit a786102

Please sign in to comment.