📅  最后修改于: 2023-12-03 15:34:07.066000             🧑  作者: Mango
tensorflow.raw_ops.Tan()
是一个 TensorFlow 操作,用于计算输入张量元素的正切值。
tensorflow.raw_ops.Tan(x, name=None)
x
: 输入张量,数据类型必须为 float16
, float32
, float64
或 complex64
, complex128
中的一种。name
(可选参数): 操作名称。返回张量,数据类型同输入张量。
import tensorflow as tf
# 创建输入张量
x = tf.constant([0.0, 0.785, 1.571, 2.356, 3.142], dtype=tf.float32)
# 计算正切值
y = tf.raw_ops.Tan(x)
# 打印结果
print(y)
# 输出:
# tf.Tensor(
# [ 0. 1.0000037 -1.6774995 -0.46630794 0.00000138], shape=(5,), dtype=float32)
tensorflow.raw_ops.Tan()
可以处理复数输入。