2005-11-10 10:50:09 -05:00
|
|
|
#include "MathFunctions.h"
|
2016-04-29 10:53:13 -04:00
|
|
|
#include <stdio.h>
|
2005-11-10 10:50:09 -05:00
|
|
|
|
|
|
|
// a hack square root calculation using simple operations
|
|
|
|
double mysqrt(double x)
|
|
|
|
{
|
2016-05-16 10:34:04 -04:00
|
|
|
if (x <= 0) {
|
2005-11-10 10:50:09 -05:00
|
|
|
return 0;
|
2016-05-16 10:34:04 -04:00
|
|
|
}
|
2012-08-13 13:42:58 -04:00
|
|
|
|
2005-11-10 10:50:09 -05:00
|
|
|
double result;
|
2012-08-13 13:42:58 -04:00
|
|
|
double delta;
|
2005-11-10 10:50:09 -05:00
|
|
|
result = x;
|
|
|
|
|
|
|
|
// do ten iterations
|
|
|
|
int i;
|
2016-05-16 10:34:04 -04:00
|
|
|
for (i = 0; i < 10; ++i) {
|
|
|
|
if (result <= 0) {
|
2005-11-10 10:50:09 -05:00
|
|
|
result = 0.1;
|
|
|
|
}
|
2016-05-16 10:34:04 -04:00
|
|
|
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 10:50:09 -05:00
|
|
|
return result;
|
|
|
|
}
|