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