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