CMake/Tests/Tutorial/Step2/MathFunctions/mysqrt.cxx

27 lines
493 B
C++
Raw Normal View History

2005-11-10 00:21:05 +03:00
#include "MathFunctions.h"
#include <stdio.h>
2005-11-10 00:21:05 +03:00
// a hack square root calculation using simple operations
double mysqrt(double x)
{
if (x <= 0) {
2005-11-10 00:21:05 +03:00
return 0;
}
2005-11-10 00:21:05 +03:00
double result;
double delta;
2005-11-10 00:21:05 +03:00
result = x;
// do ten iterations
int i;
for (i = 0; i < 10; ++i) {
if (result <= 0) {
2005-11-10 00:21:05 +03:00
result = 0.1;
}
delta = x - (result * result);
result = result + 0.5 * delta / result;
fprintf(stdout, "Computing sqrt of %g to be %g\n", x, result);
}
2005-11-10 00:21:05 +03:00
return result;
}