Be concise.
Be useful.
All contributions dictatorially edited by webmasters to match personal tastes.
Please do not paste any copyright violating material.
Please try to avoid dependencies to third-party libraries and frameworks.
- Go
- C++
- C#
- Dart
- Elixir
- Fortran
- Haskell
- JS
- JS
- Java
- Java
- Java
- Java
- Lua
- Lua
- PHP
- Pascal
- Perl
- Python
- Ruby
- Rust
- Rust
double hypo(double x, double y)
{
return Math.Sqrt(Math.Pow(x, 2) + Math.Pow(y, 2));
}
h = hypot(x,y)
Requires Fortran 2008
hypo x y = sqrt $ x**2 + y**2
const h = Math.hypot(x, y);
var h = Math.sqrt(x*x + y*y);
Works even in older browsers.
BigDecimal X = new BigDecimal(x).pow(2),
Y = new BigDecimal(y).pow(2),
h = X.add(Y).sqrt(DECIMAL128);
return double h = Math.sqrt(Math.pow(x,2)+Math.pow(y,2));
Math.sqrt returns a double. x and y can be any number type but there may be a loss in accuracy if they are not doubles themselves.
local h = math.sqrt(x^2 + y^2)
local h=(x^2+y^2)^0.5
$h = hypot($x, $y)
// before PHP 4.1
$h = sqrt($x*$x + $y*$y);