Python - tensorflow.math.sinh() Last Updated : 27 Feb, 2023 Comments Improve Suggest changes Like Article Like Report TensorFlow is open-source Python library designed by Google to develop Machine Learning models and deep learning neural networks. sinh() is used to find element wise hyperbolic sine of x. Syntax: tf.math.sinh(x, name) Parameters: x: It's the input tensor. Allowed dtype for this tensor are bfloat16, half, float32, float64, complex64, complex128.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.sinh(x = a) # Printing the result print('Result: ', res) Output: Input: tf.Tensor([1. 2. 3. 4. 5.], shape=(5, ), dtype=float64) Result: tf.Tensor([ 1.17520119 3.62686041 10.01787493 27.2899172 74.20321058], 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.sinh(x = a) # Plotting the graph plt.plot(a, res, color ='green') plt.title('tensorflow.math.sinh') plt.xlabel('Input') plt.ylabel('Result') plt.show() Output: Comment More infoAdvertise with us Next Article Python - tensorflow.math.sinh() A aman neekhara Follow Improve Article Tags : Machine Learning AI-ML-DS With Python Practice Tags : Machine Learning Similar Reads Python - tensorflow.math.sin() TensorFlow is open-source python library designed by Google to develop Machine Learning models and deep learning  neural networks. sin() is used to find element wise sine of x. Syntax: tf.math.sin(x, name) Parameters: x: It's the input tensor. Allowed dtype for this tensor are bfloat16, half, float 1 min read Python - tensorflow.math.sign() TensorFlow is open-source Python library designed by Google to develop Machine Learning models and deep learning neural networks. sign() is used to find element wise indication of the sign of a number. Specifically, y = sign(x) = -1 if x < 0; 0 if x == 0; 1 if x > 0. For complex numbers, y = s 2 min read Python | Tensorflow sinh() 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.sinh() [alias tf.math.sinh] provides support for the hyperbolic sine 2 min read Python - tensorflow.math.tanh() TensorFlow is open-source python library designed by Google to develop Machine Learning models and deep learning  neural networks. tanh() is used to find element wise hyperbolic tangent of x. Syntax: tf.math.tanh(x, name) Parameters: x: It's the input tensor. Allowed dtype for this tensor are bfloa 1 min read Python - tensorflow.math.rint() TensorFlow is open-source python library designed by Google to develop Machine Learning models and deep learning  neural networks. rint() is used to find element-wise integer closest to x. Syntax: tf.math.rint(x, name) Parameter: x: It's the input tensor. Allowed dtype for this tensor are bfloat16, 2 min read Like