Help for this page

Select Code to Download


  1. or download this
    my @poly1_coeffs = () ;
    push @poly1_coeffs, 1 ;
    ...
    {
        push @poly1_coeffs, 0 ;
    }
    
  2. or download this
    my @poly_coeffs = (0) x ($n + 1) ;
    $poly_coeffs[0]++ ;