tensorflow::ops::Conj
#include <math_ops.h>
Возвращает комплексно сопряжённое значение комплексного числа.
Summary
Учитывая тензор input комплексных чисел, эта операция возвращает тензор комплексных чисел, являющихся комплексно сопряжёнными каждому элементу в input. Комплексные числа в input должны иметь вид \(a + bj\), где a — действительная часть, а b — мнимая часть.
Комплексное сопряжённое, возвращаемое этой операцией, имеет вид \(a - bj\).
Например:
# tensor 'input' is [-2.25 + 4.75j, 3.25 + 5.75j] tf.conj(input) ==> [-2.25 - 4.75j, 3.25 - 5.75j]
Аргументы:
- scope: Объект Scope
Возвращает:
-
Output: Результирующий тензор.
| Конструкторы и деструкторы | |
|---|---|
Conj(const ::tensorflow::Scope & scope, ::tensorflow::Input input) |
| Общедоступные атрибуты | |
|---|---|
operation | |
output | |
| Общедоступные функции | |
|---|---|
node() const | ::tensorflow::Node * |
operator::tensorflow::Input() const | |
operator::tensorflow::Output() const | |
Общедоступные атрибуты
operation
Operation operation
output
::tensorflow::Output output
Общедоступные функции
Conj
Conj( const ::tensorflow::Scope & scope, ::tensorflow::Input input )
node
::tensorflow::Node * node() const
operator::tensorflow::Input
operator::tensorflow::Input() const
operator::tensorflow::Output
operator::tensorflow::Output() const
© 2020 The TensorFlow Authors. All rights reserved.
Licensed under the Creative Commons Attribution License 3.0.
Code samples licensed under the Apache 2.0 License.
https://www.tensorflow.org/versions/r1.15/api_docs/cc/class/tensorflow/ops/conj