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