Subject: | BestFit line number 159 |
In BestFit
The for loop for be
for ( $i = 0 ; $i < @$a_ref ; $i++ ) {
instead of
for ( $i = 0 ; $i <= @$a_ref ; $i++ ) {
}
Which will cause null values to be included and a bunch of warning about
uninitialized variable.
Eric