00001
00002
00003 #include <math.h>
00004 #include "complex.h"
00005
00006 #define EPS 2.0e-6
00007 #define MAXM 100
00008
00009 void zroots(a,m,roots,polish)
00010 fcomplex a[],roots[];
00011 int m,polish;
00012 {
00013 int jj,j,i;
00014 fcomplex x,b,c,ad[MAXM];
00015 void laguer();
00016
00017 for (j=0;j<=m;j++) ad[j]=a[j];
00018 for (j=m;j>=1;j--) {
00019 x=Complex(0.0,0.0);
00020 laguer(ad,j,&x,EPS,0);
00021 if (fabs(x.i) <= (2.0*EPS*fabs(x.r))) x.i=0.0;
00022 roots[j]=x;
00023 b=ad[j];
00024 for (jj=j-1;jj>=0;jj--) {
00025 c=ad[jj];
00026 ad[jj]=b;
00027 b=Cadd(Cmul(x,b),c);
00028 }
00029 }
00030 if (polish)
00031 for (j=1;j<=m;j++)
00032 laguer(a,m,&roots[j],EPS,1);
00033 for (j=2;j<=m;j++) {
00034 x=roots[j];
00035 for (i=j-1;i>=1;i--) {
00036 if (roots[i].r <= x.r) break;
00037 roots[i+1]=roots[i];
00038 }
00039 roots[i+1]=x;
00040 }
00041 }
00042
00043 #undef EPS
00044 #undef MAXM