Tensorflow.js tf.acos() Function Last Updated : 10 May, 2021 Comments Improve Suggest changes Like Article Like Report Tensorflow.js is an open-source library developed by Google for running machine learning models as well as deep learning neural networks in the browser or node environment. The .acos() function is used to find the acos of the stated tensor element input. Syntax: tf.acos(x)Parameters: x: It is the tensor input element whose acos value is to be computed.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 acos 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 tensor input elements const y = tf.tensor1d([1, 4, 0, 11]); // Calling acos() method and // Printing output y.acos().print(); Output: Tensor [0, NaN, 1.5707288, NaN]Example 2: In this example, float type values are considered as tensor input and the parameter is passed directly to the acos function. JavaScript // Importing the tensorflow.js library import * as tf from "@tensorflow/tfjs" // Defining float values var val = [.5, .4, .2]; // Calling tensor1d method const y = tf.tensor1d(val); // Calling acos() method var res = tf.acos(y) // Printing output res.print(); Output: Tensor [1.0471513, 1.1592351, 1.3694812] Reference: https://js.tensorflow.org/api/latest/#acos Comment More infoAdvertise with us Next Article Tensorflow.js tf.acos() Function N nidhi1352singh Follow Improve Article Tags : JavaScript Web Technologies Tensorflow.js Similar Reads Tensorflow.js tf.acosh() 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 .acosh() function is used to find the inverse hyperbolic cos of the stated tensor element input. Syntax: Â tf 2 min read Tensorflow.js tf.cos() Function Tensorflow.js is an open-source library which is being developed by Google for running machine learning models as well as deep learning neural networks in the browser or node environment. The .cos() function is used to find the cosine value of the stated tensor input and is done element wise. Syntax 2 min read Tensorflow.js tf.cosh() Function Tensorflow.js is an open-source library which is being developed by Google for running machine learning models as well as deep learning neural networks in the browser or node environment. The .cosh() function is used to find the hyperbolic cos of the stated tensor input and is done element wise. Syn 2 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 Tensorflow.js tf.asinh() 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 .asinh() function is used to find the inverse hyperbolic sin of the stated tensor input and is done elements 2 min read Like