Help for this page

Select Code to Download


  1. or download this
    my @poly_coeffs = (0) x ($n + 1) ;
    $poly_coeffs[0]++ ;
    
  2. or download this
    my @poly_coeffs = map !$_+0, 0..$n;
    
  3. or download this
    my @poly_coeffs = (1, (0) x $n);