T - data type for output() output@Operator public final class FFT2D<T> extends PrimitiveOp implements Operand<T>
Computes the 2-dimensional discrete Fourier transform over the inner-most 2 dimensions of `input`.
operation| Modifier and Type | Method and Description |
|---|---|
Output<T> |
asOutput()
Returns the symbolic handle of a tensor.
|
static <T> FFT2D<T> |
create(Scope scope,
Operand<T> input)
Factory method to create a class to wrap a new FFT2D operation to the graph.
|
Output<T> |
output()
A complex tensor of the same shape as `input`.
|
equals, hashCode, toStringpublic static <T> FFT2D<T> create(Scope scope, Operand<T> input)
scope - current graph scopeinput - A complex tensor.public Output<T> output()
public Output<T> 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<T>OperationBuilder.addInput(Output)Copyright © 2015–2019. All rights reserved.