hypot

Computes the square root of the sum of the squares of the given values.

Parameters

x double

value

y double

value

Return Value

Type: double

The equivalent of sqrt(pow(x, 2) + pow(y, 2)).

Meta