hypot.c 282 Bytes
Newer Older
1 2
/* hypot() replacement */

3
#include "pyconfig.h"
4
#include "pyport.h"
5

6
double hypot(double x, double y)
7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23
{
	double yx;

	x = fabs(x);
	y = fabs(y);
	if (x < y) {
		double temp = x;
		x = y;
		y = temp;
	}
	if (x == 0.)
		return 0.;
	else {
		yx = y/x;
		return x*sqrt(1.+yx*yx);
	}
}