MCPcopy Create free account
hub / github.com/arrayfire/arrayfire / hypot

Function hypot

extern/half/include/half.hpp:2398–2398  ·  view source on GitHub ↗

Hypotenuse function. \param x first argument \param y second argument \return square root of sum of squares without internal over- or underflows template typename enable ::type hypot(T x, U y) { return functions::hypot(x, y); }

Source from the content-addressed store, hash-verified

2396 /// \return square root of sum of squares without internal over- or underflows
2397// template<typename T,typename U> typename enable<expr,T,U>::type hypot(T x, U y) { return functions::hypot(x, y); }
2398 inline expr hypot(half x, half y) { return functions::hypot(x, y); }
2399 inline expr hypot(half x, expr y) { return functions::hypot(x, y); }
2400 inline expr hypot(expr x, half y) { return functions::hypot(x, y); }
2401 inline expr hypot(expr x, expr y) { return functions::hypot(x, y); }

Callers 11

hypotMethod · 0.85
TESTFunction · 0.85
TESTFunction · 0.85
JacobiSVDFunction · 0.85
JacobiSVDFunction · 0.85
prewittFunction · 0.85
sobelFilterFunction · 0.85
sobelFilterFunction · 0.85
mainFunction · 0.85
prewittFunction · 0.85
sobelFilterFunction · 0.85

Calls

no outgoing calls

Tested by

no test coverage detected