home *** CD-ROM | disk | FTP | other *** search
/ Liren Large Software Subsidy 7 / 07.iso / c / c129 / 1.ddi / ROOTS.H < prev    next >
Encoding:
Text File  |  1988-01-21  |  525 b   |  19 lines

  1.  
  2. float AFunction(float X);
  3.  
  4. float AFunctionPrime(float X);
  5.  
  6. char RootBracketed(float x1, float x2);
  7.  
  8. float Minimum(float x1, float x2);
  9.  
  10. float BrentRoots(float x1,float x2,float Tolerance,
  11.                   int maxIterations,float *valueAtRoot,int *error);
  12.  
  13. float BisectionRoots(float x1, float x2, float Tolerance,
  14.                       int maxIterations,float *valueAtRoot,int *error);
  15.  
  16. float NewtonRoots(float x1,float Tolerance,float maxIterations,
  17.                    float *valueAtRoot, int *error);
  18.  
  19.