home *** CD-ROM | disk | FTP | other *** search
-
- float AFunction(float X);
-
- float AFunctionPrime(float X);
-
- char RootBracketed(float x1, float x2);
-
- float Minimum(float x1, float x2);
-
- float BrentRoots(float x1,float x2,float Tolerance,
- int maxIterations,float *valueAtRoot,int *error);
-
- float BisectionRoots(float x1, float x2, float Tolerance,
- int maxIterations,float *valueAtRoot,int *error);
-
- float NewtonRoots(float x1,float Tolerance,float maxIterations,
- float *valueAtRoot, int *error);
-