U - data type for output() output@Operator(group="math") public final class Real<U extends Number> extends PrimitiveOp implements Operand<U>
Given a tensor `input` of complex numbers, this operation returns a tensor of type `float` that is the real part of each element in `input`. All elements in `input` must be complex numbers of the form \\(a + bj\\), where a is the real part returned by this operation and b is the imaginary part.
For example:
# tensor 'input' is [-2.25 + 4.75j, 3.25 + 5.75j]
tf.real(input) ==> [-2.25, 3.25]
operation| Modifier and Type | Method and Description |
|---|---|
Output<U> |
asOutput()
Returns the symbolic handle of a tensor.
|
static <T> Real<Float> |
create(Scope scope,
Operand<T> input)
Factory method to create a class wrapping a new Real operation using default output types.
|
static <U extends Number,T> |
create(Scope scope,
Operand<T> input,
Class<U> Tout)
Factory method to create a class wrapping a new Real operation.
|
Output<U> |
output() |
equals, hashCode, op, toStringpublic static <U extends Number,T> Real<U> create(Scope scope, Operand<T> input, Class<U> Tout)
scope - current scopeinput - Tout - public static <T> Real<Float> create(Scope scope, Operand<T> input)
scope - current scopeinput - public Output<U> asOutput()
OperandInputs to TensorFlow operations are outputs of another TensorFlow operation. This method is used to obtain a symbolic handle that represents the computation of the input.
asOutput in interface Operand<U extends Number>OperationBuilder.addInput(Output)Copyright © 2015–2019. All rights reserved.