#include <math.h>
double polinomio(double *coeffint ndouble x){
 int i;
 double k;
 k=0;
 for(i=0i<=ni++)
       k=k+coeff[i]*pow(xi);
 return k;
}