Tensorflow.js tf.atan2() Function Last Updated : 10 May, 2021 Comments Improve Suggest changes Like Article Like Report Tensorflow.js is an open-source library that is being developed by Google for running machine learning models as well as deep learning neural networks in the browser or node environment. The .atan2() function is used to find the arctangent of the stated tensor inputs and is done element wise. Moreover, it also helps in broadcasting. Syntax : tf.atan2(a, b)Parameters: a: It is the first tensor input that can be of type tf.Tensor, or TypedArray, or Array.b: It is the second tensor input which can be of type tf.Tensor, or TypedArray, or Array, and it must have identical datatype as that of a.Return Value: It returns the tf.Tensor object. Example 1: In this example, we are defining an input tensor of integer type and then printing the atan2 value of it. For creating an input tensor we are utilizing the .tensor1d() method and in order to print the output we are using the .print() method. JavaScript // Importing the tensorflow.js library import * as tf from "@tensorflow/tfjs" // Defining first tensor input elements const y = tf.tensor1d([9, 10, 11, 12]); // Defining second tensor input elements const z = tf.tensor1d([13, 14, 15, 17]); // Calling atan2() method and // Printing output (y).atan2(z).print(); Output: Tensor [0.6055371, 0.6202452, 0.6327478, 0.6146573]Example 2: In this example, float type values are considered as tensor input and both the parameters are passed directly to the atan2 function. JavaScript // Importing the tensorflow.js library import * as tf from "@tensorflow/tfjs" // Defining float values for first tensor var val1 = [.5, 4.9, .275]; // Defining float values for second tensor var val2 = [1.5, 5.9, .775]; // Calling tensor1d method const y = tf.tensor1d(val1); const z = tf.tensor1d(val2); // Calling atan2() method var res = tf.atan2(y,z); // Printing output res.print(); Output: Tensor [0.3217588, 0.6930802, 0.340989]Reference: https://js.tensorflow.org/api/latest/#atan2 Comment More infoAdvertise with us Next Article Tensorflow.js tf.atan2() Function nidhi1352singh Follow Improve Article Tags : JavaScript Web Technologies Tensorflow.js Similar Reads Tensorflow.js tf.atan() Function Tensorflow.js is an open-source library that is being developed by Google for running machine learning models as well as deep learning neural networks in the browser or node environment. The .atan() function is used to find the atan of the stated tensor input and is done element wise. Syntax : Â tf. 2 min read Tensorflow.js tf.atanh() Function Tensorflow.js is an open-source library that is being developed by Google for running machine learning models as well as deep learning neural networks in the browser or node environment. The .atanh() function is used to find the inverse hyperbolic tan of the stated tensor input and is done elements 2 min read Tensorflow.js tf.any() Function Tensorflow.js is an open-source library developed by Google for running machine learning models and deep learning neural networks in the browser or node environment. It also helps the developers to develop ML models in the JavaScript language so that ML directly can be used in the browser or in Node 1 min read Tensorflow.js tf.addN() Function Tensorflow.js is an open-source library developed by Google for running machine learning models and deep learning neural networks in the browser or node environment. The tf.addN() function is used to add a specified list of Tensors element-wise. Each Tensor should be of the same shape and data type. 1 min read Tensorflow.js tf.asin() Function Tensorflow.js is an open-source library that is being developed by Google for running machine learning models as well as deep learning neural networks in the browser or node environment. The .asin() function is used to find the asin of the stated tensor elementwise. Syntax: Â tf.asin(x) Parameters: 2 min read Like