home *** CD-ROM | disk | FTP | other *** search
-
-
-
- # include <math.h>
- # include "stdlib.h"
- # include "stdio.h"
- # include "miscio.h"
- # include "roots.h"
-
-
-
-
- main()
- {
-
- float A;
- float B;
- float C;
- int i;
-
- B = BisectionRoots(0.1,4.0,1.0E-6,100,&A,&i);
- printf("Bisection Roots:\n");
- printf("Root = %f Value = %f Error = %d\n", B,A,i);
- printf("\n");
- B = BrentRoots(0.1,4.0,1.0E-8,100,&A,&i);
- printf("Brent Roots\n");
- printf("Root = %f Value = %f Error = %d\n", B, A, i);
- printf("\n");
- B = NewtonRoots(4.3,1.0e-8,100,&A,&i);
- printf("Newton Roots:\n");
- printf("Root = %f Value = %f Error = %d\n", B, A, i);
-
-
- }
-