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); }
| 2383 | /// \return square root of sum of squares without internal over- or underflows |
| 2384 | // template<typename T,typename U> typename enable<expr,T,U>::type hypot(T x, U y) { return functions::hypot(x, y); } |
| 2385 | inline expr hypot(half x, half y) { return functions::hypot(x, y); } |
| 2386 | inline expr hypot(half x, expr y) { return functions::hypot(x, y); } |
| 2387 | inline expr hypot(expr x, half y) { return functions::hypot(x, y); } |
| 2388 | inline expr hypot(expr x, expr y) { return functions::hypot(x, y); } |