Python - tensorflow.math.acosh() Last Updated : 03 Apr, 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. acosh() is used to find element wise hyperbolic acosh of x. Syntax: tf.math.acosh(x, name) Parameters: x: It's the input tensor. Allowed dtype for this tensor are bfloat16, half, float32, float64.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([ 1, 2, 3, 4, 5], dtype = tf.float64) # Printing the input tensor print('Input: ', a) # Calculating tangent res = tf.math.acosh(x = a) # Printing the result print('Result: ', res) Output: Input: tf.Tensor([1. 2. 3. 4. 5.], shape=(5, ), dtype=float64) Result: tf.Tensor([0. 1.3169579 1.76274717 2.06343707 2.29243167], shape=(5, ), dtype=float64) Example 2: Visualization Python3 # Importing the library import tensorflow as tf import matplotlib.pyplot as plt # Initializing the input tensor a = tf.constant([1, 2, 3, 4, 5], dtype = tf.float64) # Calculating tangent res = tf.math.acosh(x = a) # Plotting the graph plt.plot(a, res, color ='green') plt.title('tensorflow.math.acosh') plt.xlabel('Input') plt.ylabel('Result') plt.show() Output: Comment More infoAdvertise with us Next Article Python | Tensorflow acosh() method A aman neekhara Follow Improve Article Tags : Machine Learning AI-ML-DS With Python Practice Tags : Machine Learning Similar Reads Python - tensorflow.math.acos() TensorFlow is open-source python library designed by Google to develop Machine Learning models and deep learning  neural networks. acos() is used to find element wise acos of x. Syntax: tf.math.acos(x, name) Parameters: x: It's the input tensor. Allowed dtype for this tensor are bfloat16, half, flo 1 min read Python - tensorflow.math.cosh() TensorFlow is open-source python library designed by Google to develop Machine Learning models and deep learning  neural networks. cosh() is used to find element wise hyperbolic cos of x. Syntax: tf.math.cosh(x, name) Parameters: x: It's the input tensor. Allowed dtype for this tensor are bfloat16, 1 min read Python - tensorflow.math.cos() TensorFlow is open-source python library designed by Google to develop Machine Learning models and deep learning  neural networks. cos() is used to find element wise cos of x. Syntax: tf.math.cos(x, name) Parameters: x: It's the input tensor. Allowed dtype for this tensor are bfloat16, half, float3 1 min read Python | Tensorflow acosh() method Tensorflow is an open-source machine learning library developed by Google. One of its applications is to develop deep neural networks. The module tensorflow.math provides support for many basic mathematical operations. Function tf.acosh() [alias tf.math.acosh] provides support for the inverse hyperb 2 min read Python - tensorflow.math.asinh() TensorFlow is open-source python library designed by Google to develop Machine Learning models and deep learning  neural networks. asinh() is used to find element wise hyperbolic asinh of x. Syntax: tf.math.asinh(x, name) Parameters: x: It's the input tensor. Allowed dtype for this tensor are bfloa 1 min read Python | Tensorflow acos() method Tensorflow is an open-source machine learning library developed by Google. One of its applications is to develop deep neural networks. The module tensorflow.math provides support for many basic mathematical operations. Function tf.acos() [alias tf.math.acos] provides support for the inverse cosine f 2 min read Like