📅  最后修改于: 2023-12-03 15:34:06.818000             🧑  作者: Mango
tensorflow.math.bessel_i1e()
函数是tensorflow中的Bessel函数的一种,它被设计用于计算第一类修改Bessel函数I1(x)。该函数的输入为一个Tensor
(张量),输出为一个Tensor
(张量)。
tensorflow.math.bessel_i1e(x)
x
: 张量类型,表示函数中的自变量,支持以下数据类型:float16
float32
float64
complex64
complex128
输出为一个Tensor
(张量),它与输入具有相同的形状和数据类型。
import tensorflow as tf
x = tf.constant([2.0, 3.0, 4.0])
y = tf.math.bessel_i1e(x)
print(y)
# Output:
# tf.Tensor([4.8802354e-01 9.570361e-02 3.1378013e-02], shape=(3,), dtype=float32)