Lines Matching refs:ord
286 static void cheby(float *g, int ord) { in cheby() argument
290 for(i=2; i<= ord; i++) { in cheby()
291 for(j=ord; j >= i; j--) { in cheby()
310 static int Laguerre_With_Deflation(float *a,int ord,float *r){ in Laguerre_With_Deflation() argument
313 double *defl=alloca(sizeof(*defl)*(ord+1)); in Laguerre_With_Deflation()
314 for(i=0;i<=ord;i++)defl[i]=a[i]; in Laguerre_With_Deflation()
316 for(m=ord;m>0;m--){ in Laguerre_With_Deflation()
366 static int Newton_Raphson(float *a,int ord,float *r){ in Newton_Raphson() argument
369 double *root=alloca(ord*sizeof(*root)); in Newton_Raphson()
371 for(i=0; i<ord;i++) root[i] = r[i]; in Newton_Raphson()
376 for(i=0; i<ord; i++) { /* Update each point. */ in Newton_Raphson()
379 double p=a[ord]; in Newton_Raphson()
380 for(k=ord-1; k>= 0; k--) { in Newton_Raphson()
399 for(i=0; i<ord;i++) r[i] = root[i]; in Newton_Raphson()