Python 中的 tensorflow.math.special.fresnel_sin()函数
原文:https://www.geesforgeks.org/tensorflow-math-special-fresnel_sin-function-in-python/
TensorFlow 是谷歌为开发机器学习模型和深度学习神经网络而设计的开源 python 库。
菲涅尔函数
fresnel_sin() 用于计算 x 的元素式 fresnel 正弦积分,定义为从 0 到 x 的 sin(t^2 积分,定义域为所有正实数。
语法:tensorflow.math.special.fresnel_sin(x,name)
参数:
- x: 是张量或稀疏张量。允许的数据类型是 float32 和 float64。
- 名称(可选):定义操作的名称。
返回:返回与 x 相同数据类型的张量。
例 1:
蟒蛇 3
# importing the library
import tensorflow as tf
# Initializing the input tensor
a = tf.constant([ [-5, -7],[ 2, 0]], dtype=tf.float64)
# Printing the input tensor
print('a: ', a)
# Calculating result
res = tf.math.special.fresnel_sin(a)
# Printing the result
print('Result: ', res)
输出:
a: tf.Tensor(
[[-5\. -7.]
[ 2\. 0.]], shape=(2, 2), dtype=float64)
Result: tf.Tensor(
[[-0.49919138 -0.49970479]
[ 0.34341568 0\. ]], shape=(2, 2), dtype=float64)
例 2:
蟒蛇 3
# importing the library
import tensorflow as tf
# Initializing the input tensor
a = tf.constant([1, 2, 3, 4, 5], dtype=tf.float64)
# Printing the input tensor
print('a: ', a)
# Calculating result
res = tf.math.special.fresnel_sin(a)
# Printing the result
print('Result: ', res)
输出:
答:tf。张量([1。2.3.4.5.],shape=(5,,,dtype=float64) 结果:tf。张量([0.43825915 0.34341568 0.496313 0.42051575 0.49919138],形状=(5,,,dtype=float64)