home *** CD-ROM | disk | FTP | other *** search
/ Liren Large Software Subsidy 7 / 07.iso / c / c129 / 1.ddi / ROOTSDEM.C < prev    next >
Encoding:
C/C++ Source or Header  |  1988-01-21  |  630 b   |  36 lines

  1.  
  2.  
  3.  
  4. # include <math.h>
  5. # include "stdlib.h"
  6. # include "stdio.h"
  7. # include "miscio.h"
  8. # include "roots.h"
  9.  
  10.  
  11.  
  12.  
  13. main()
  14. {
  15.  
  16. float A;
  17. float B;
  18. float C;
  19. int i;
  20.  
  21.    B = BisectionRoots(0.1,4.0,1.0E-6,100,&A,&i);
  22.    printf("Bisection Roots:\n");
  23.    printf("Root = %f  Value = %f  Error = %d\n", B,A,i);
  24.    printf("\n");
  25.    B = BrentRoots(0.1,4.0,1.0E-8,100,&A,&i);
  26.    printf("Brent Roots\n");
  27.    printf("Root = %f  Value = %f  Error = %d\n", B, A, i);
  28.    printf("\n");
  29.    B = NewtonRoots(4.3,1.0e-8,100,&A,&i);
  30.    printf("Newton Roots:\n");
  31.    printf("Root = %f  Value = %f  Error = %d\n", B, A, i);
  32.  
  33.  
  34. }
  35.  
  36.