将两个实数转换为复数。
用法
tf.dtypes.complex(
real, imag, name=None
)
参数
-
real
一个Tensor
。必须是以下类型之一:float32
、float64
。 -
imag
一个Tensor
。必须与real
具有相同的类型。 -
name
操作的名称(可选)。
返回
-
Tensor
类型为complex64
或complex128
。
抛出
-
TypeError
Real 和 imag 必须是正确的类型
给定一个张量real
表示复数的实部和张量imag
表示复数的虚部,此操作返回形式为元素的复数 ,其中a代表real
部分和b代表imag
部分。
输入张量 real
和 imag
必须具有相同的形状。
例如:
real = tf.constant([2.25, 3.25])
imag = tf.constant([4.75, 5.75])
tf.complex(real, imag) # [[2.25 + 4.75j], [3.25 + 5.75j]]
相关用法
- Python tf.dtypes.DType用法及代码示例
- Python tf.dtypes.DType.is_compatible_with用法及代码示例
- Python tf.distribute.OneDeviceStrategy.experimental_distribute_values_from_function用法及代码示例
- Python tf.data.Dataset.take_while用法及代码示例
- Python tf.data.experimental.RandomDataset.group_by_window用法及代码示例
- Python tf.data.TFRecordDataset.filter用法及代码示例
- Python tf.data.TextLineDataset.reduce用法及代码示例
- Python tf.data.TextLineDataset.with_options用法及代码示例
- Python tf.data.experimental.SqlDataset.enumerate用法及代码示例
- Python tf.data.TextLineDataset.as_numpy_iterator用法及代码示例
- Python tf.data.experimental.make_saveable_from_iterator用法及代码示例
- Python tf.distribute.TPUStrategy用法及代码示例
- Python tf.data.TextLineDataset.random用法及代码示例
- Python tf.data.FixedLengthRecordDataset.repeat用法及代码示例
- Python tf.data.TFRecordDataset.random用法及代码示例
- Python tf.data.Dataset.cardinality用法及代码示例
- Python tf.distribute.experimental_set_strategy用法及代码示例
- Python tf.data.FixedLengthRecordDataset.cardinality用法及代码示例
- Python tf.distribute.experimental.MultiWorkerMirroredStrategy.gather用法及代码示例
- Python tf.distribute.cluster_resolver.TFConfigClusterResolver用法及代码示例
- Python tf.data.TextLineDataset.take_while用法及代码示例
- Python tf.data.experimental.SqlDataset.zip用法及代码示例
- Python tf.distribute.experimental.MultiWorkerMirroredStrategy用法及代码示例
- Python tf.data.experimental.Counter用法及代码示例
- Python tf.distribute.TPUStrategy.experimental_assign_to_logical_device用法及代码示例
注:本文由纯净天空筛选整理自tensorflow.org大神的英文原创作品 tf.dtypes.complex。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。