Function hypot( xs, ... )

Description:
Returns the square root of the sum of squares of its arguments. In the 2-argument case, doing it like this may avoid intermediate overflow or underflow.
Parameters:
xs (floating point, one or more)
one or more numeric values
Return Value (floating point):
sqare root of sum of squares of arguments
Examples:
Signature:
double hypot(double...)