Computes the eigen decomposition of a batch of self-adjoint matrices.
View aliases
Compat aliases for migration
See Migration guide for more details.
tf.linalg.eigh(
tensor, name=None
)
Used in the notebooks
Used in the tutorials |
---|
Computes the eigenvalues and eigenvectors of the innermost N-by-N matrices
in tensor
such that
tensor[...,:,:] * v[..., :,i] = e[..., i] * v[...,:,i]
, for i=0...N-1.