Computes the eigenvalues of one or more matrices.
tf.linalg.eigvals(
tensor, name=None
)
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[..., :, :] .
|