void fpoly(x,p,np) float p[],x; int np; { int j; p[1]=1.0; for (j=2;j<=np;j++) p[j]=p[j-1]*x; }