Computes hyperbolic cos of the input tf.Tensor element-wise: cosh(x)
tf.Tensor
cosh(x)
const x = tf.tensor1d([0, 1, -1, .7]);x.cosh().print(); // or tf.cosh(x) Copy
const x = tf.tensor1d([0, 1, -1, .7]);x.cosh().print(); // or tf.cosh(x)
The input tensor. Must be float32 type.
Generated using TypeDoc
Computes hyperbolic cos of the input
tf.Tensor
element-wise:cosh(x)