tensorflow.math.atan2() function in Python Last Updated : 15 Mar, 2023 Summarize Comments Improve Suggest changes Share Like Article Like Report TensorFlow is open-source python library designed by Google to develop Machine Learning models and deep learning neural networks. atan2() is used to find element wise arctangent of y/x. Syntax: tf.math.atan2(y, x, name) Parameters: y: It's the input tensor. Allowed dtype for this tensor are bfloat16, half, float32, float64. y: It's the input tensor of same dtype as y.name(optional): It defines the name for the operation. Returns: It returns a tensor of same dtype as x. Example 1: Python3 # importing the library import tensorflow as tf # Initializing the input tensor a = tf.constant([ [-5, -7], [ 2, 0]], dtype = tf.float64) b = tf.constant([ [1, 3], [9, 4]], dtype = tf.float64) # Printing the input tensor print('a: ', a) print('b: ', b) # Calculating result res = tf.math.atan2(a, b) # Printing the result print('Result: ', res) Output: a: tf.Tensor( [[-5. -7.] [ 2. 0.]], shape=(2, 2), dtype=float64) b: tf.Tensor( [[1. 3.] [9. 4.]], shape=(2, 2), dtype=float64) Result: tf.Tensor( [[-1.37340077 -1.16590454] [ 0.21866895 0. ]], shape=(2, 2), dtype=float64) Example 2: Python3 # Importing the library import tensorflow as tf # Initializing the input tensor a = tf.constant([ -.5, -.3, 0, .3, .5], dtype = tf.float64) b = tf.constant([ 1, 2, 3, 4, 5], dtype = tf.float64) # Printing the input tensor print('a: ', a) print('b: ', b) # Calculating tangent res = tf.math.atan2(a, b) # Printing the result print('Result: ', res) Output: a: tf.Tensor([-0.5 -0.3 0. 0.3 0.5], shape=(5, ), dtype=float64) b: tf.Tensor([1. 2. 3. 4. 5.], shape=(5, ), dtype=float64) Result: tf.Tensor([-0.46364761 -0.14888995 0. 0.07485985 0.09966865], shape=(5, ), dtype=float64) Comment More infoAdvertise with us Next Article Python - tensorflow.math.atan() A aman neekhara Follow Improve Article Tags : Machine Learning AI-ML-DS With Python Practice Tags : Machine Learning Similar Reads Python - tensorflow.math.bessel_i1() function TensorFlow is open-source Python library designed by Google to develop Machine Learning models and deep learning  neural networks. bessel_i1() is function present in tensorflow math module. This function is used to find element wise first order modified Bessel function. Syntax: tensorflow.math.besse 1 min read Python - tensorflow.math.bessel_i0e() function TensorFlow is open-source Python library designed by Google to develop Machine Learning models and deep learning  neural networks. bessel_i0e() is function present in tensorflow math module. This function is used to find element wise exponentially scaled modified 0 order Bessel function. bessel_i0e( 2 min read Python - tensorflow.math.bessel_i1e() function TensorFlow is open-source python library designed by Google to develop Machine Learning models and deep learning  neural networks. bessel_i1e() is function present in tensorflow math module. This function is used to find element wise exponentially scaled first order modified Bessel function. Syntax: 2 min read Python - tensorflow.math.atan() TensorFlow is open-source python library designed by Google to develop Machine Learning models and deep learning  neural networks. atan() is used to find element wise atan of x. Syntax: tf.math.atan(x, name) Parameters: x: It's the input tensor. Allowed dtype for this tensor are bfloat16, half, flo 1 min read Python - tensorflow.math.atanh() TensorFlow is open-source python library designed by Google to develop Machine Learning models and deep learning  neural networks. atanh() is used to find element wise atanh of x. Syntax: tf.math.atanh(x, name) Parameters: x: It's the input tensor. Allowed dtype for this tensor are bfloat16, half, 1 min read Python - tensorflow.math.asin() TensorFlow is open-source python library designed by Google to develop Machine Learning models and deep learning  neural networks. asin() is used to find element wise asin of x. Syntax: tf.math.asin(x, name) Parameters: x: It's the input tensor. Allowed dtype for this tensor are bfloat16, half, flo 1 min read Like