📜  Python – tensorflow.raw_ops.Tan()(1)

📅  最后修改于: 2023-12-03 15:34:07.066000             🧑  作者: Mango

Python - tensorflow.raw_ops.Tan()

介绍

tensorflow.raw_ops.Tan() 是一个 TensorFlow 操作,用于计算输入张量元素的正切值。

语法
tensorflow.raw_ops.Tan(x, name=None)
参数
  • x: 输入张量,数据类型必须为 float16, float32, float64complex64, 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() 可以处理复数输入。