📅  最后修改于: 2023-12-03 15:05:32.574000             🧑  作者: Mango
tf.atan(input)函数是 TensorFlow.js 中的一个数学函数,用于计算输入张量中的每个元素的反正切值。它对应于数学中的 $y = \arctan(x)$ 函数,其中 $y$ 是反正切值,而 $x$ 是输入张量中的每个元素。
tf.atan(x: tf.Tensor): tf.Tensor
x: tf.Tensor
:包含输入张量的张量。tf.Tensor
:一个包含输入张量中每个元素的反正切值的张量。以下是使用 tf.atan() 的简单示例:
// 定义输入张量
const input = tf.tensor1d([0, 1, -1, 2]);
// 计算反正切值
const output = tf.atan(input);
// 打印输出张量
output.print();
输出:
Tensor
[0]: 0
[1]: 0.7853982
[2]: -0.7853982
[3]: 1.1071495