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