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

Function atan2

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

Arc tangent function. \param x first argument \param y second argument \return arc tangent value template typename enable ::type atan2(T x, U y) { return functions::atan2(x, y); }

Source from the content-addressed store, hash-verified

2462 /// \return arc tangent value
2463// template<typename T,typename U> typename enable<expr,T,U>::type atan2(T x, U y) { return functions::atan2(x, y); }
2464 inline expr atan2(half x, half y) { return functions::atan2(x, y); }
2465 inline expr atan2(half x, expr y) { return functions::atan2(x, y); }
2466 inline expr atan2(expr x, half y) { return functions::atan2(x, y); }
2467 inline expr atan2(expr x, expr y) { return functions::atan2(x, y); }

Callers 15

atan2Method · 0.85
TESTFunction · 0.85
centroid_angleFunction · 0.85
calcOrientationFunction · 0.85
computeDescriptorFunction · 0.85
computeGLOHDescriptorFunction · 0.85
centroid_angleFunction · 0.85
calcOrientationFunction · 0.85
computeGLOHDescriptorFunction · 0.85
cart_to_sph_positionFunction · 0.85
cart_to_sph_velocityFunction · 0.85
cart_to_oblate_positionFunction · 0.85

Calls

no outgoing calls

Tested by

no test coverage detected