Class Zeta<T extends TNumber>

java.lang.Object
org.tensorflow.op.RawOp
org.tensorflow.op.math.Zeta<T>
All Implemented Interfaces:
Shaped, Op, Operand<T>

@Operator(group="math") public final class Zeta<T extends TNumber> extends RawOp implements Operand<T>
Compute the Hurwitz zeta function \(\zeta(x, q)\). The Hurwitz zeta function is defined as:

\(\zeta(x, q) = \sum_{n=0}^{\infty} (q + n)^{-x}\)

  • Field Details

  • Constructor Details

  • Method Details

    • create

      @Endpoint(describeByClass=true) public static <T extends TNumber> Zeta<T> create(Scope scope, Operand<T> x, Operand<T> q)
      Factory method to create a class wrapping a new Zeta operation.
      Type Parameters:
      T - data type for Zeta output and operands
      Parameters:
      scope - current scope
      x - The x value
      q - The q value
      Returns:
      a new instance of Zeta
    • z

      public Output<T> z()
      Gets z.
      Returns:
      z.
    • asOutput

      public Output<T> asOutput()
      Description copied from interface: Operand
      Returns the symbolic handle of the tensor.

      Inputs 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.

      Specified by:
      asOutput in interface Operand<T extends TNumber>
      See Also: