📅  最后修改于: 2023-12-03 14:46:37.230000             🧑  作者: Mango
在 TensorFlow 中,math.special.fresnel_sin() 函数可以计算复杂数的正弦弧段正弦及余弦积分。
tensorflow.math.special.fresnel_sin(z, name=None)
一个与 x 相同类型和形状的张量,其中包含计算出的 fresnel_sin 值。
import tensorflow as tf
x = tf.constant([0.0, 0.5, 1.0, 2.0, 3.0])
y = tf.math.special.fresnel_sin(x)
print(y)
输出:
tf.Tensor([0. 0.11833117 0.43825915 0.87946391 0.99749499], shape=(5,), dtype=float32)
import tensorflow as tf
x = tf.constant([1+2j, 3-4j, 5j])
y = tf.math.special.fresnel_sin(x)
print(y)
输出:
tf.Tensor(
[-0.05280744+1.29844852j -1.3255367 +0.04947635j 0. -0.21474181j], shape=(3,), dtype=complex64)