Help for this page

Select Code to Download


  1. or download this
    sub is_approximately_an_integer {
        foreach my $x ( @zeros ) {
        $x = shift;
    ...
        return abs( $x-int($x) ) < $eps;
        }
    }