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