The tensorflow.math
module provides support for many basic mathematical operations. The tf.cosh ()
[alias tf.math.cosh
] function provides support for the hyperbolic cosine function in Tensorflow. Input in radians is expected. Input type — tensor, and if the input contains more than one element, the element-wise hyperbolic cosine is calculated.
Syntax : tf.cosh (x, name = None) or tf.math.cosh (x, name = None)
Parameters :
x : A tensor of any of the following types: float16, float32, float64 , complex64, or complex128.
name (optional): The name for the operation.Return type : A tensor with the same type as that of x.
Code # 1:
|
Exit:
Input type: Tensor ("Const_2: 0", shape = (6,), dtype = float32) Input: [1. -0.5 3.4 -2.1 0. -6.5] Return type: Tensor ("cosh_1: 0", shape = (6,), dtype = float32) Output: [1.5430806 1.127626 14.998738 4.144313 1. 332.5716]
Code # 2: Rendering
|
Output:
Input: [-1. -0.85714286 -0.71428571 -0.57142857 -0.42857143 -0.28571429 -0.14285714 0. 0.14285714 0.28571429 0.42857143 0.57142857 0.71428571 0.85714286 1.] Output: [1.54308063 1.39039564 1.26613436 1.16775654 1.09325103 1.04109475 1.01022145 1. 1.01022145 1.04109475 1.09325103 1.16775654 1.26613436 1.39039564 1.54308063]