tf.self_adjoint_eigvals()

tf.self_adjoint_eigvals(tensor, name=None)

Computes the eigenvalues of one or more self-adjoint matrices.

Args:
  • tensor: Tensor of shape [..., N, N].
  • name: string, optional name of the operation.
Returns:
  • e: Eigenvalues. Shape is [..., N]. The vector e[..., :] contains the N eigenvalues of tensor[..., :, :].
doc_TensorFlow
2025-01-10 15:47:30
Comments
Leave a Comment

Please login to continue.