Skip to content
Merged
Show file tree
Hide file tree
Changes from 2 commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions doc/reference/linalg.rst
Original file line number Diff line number Diff line change
Expand Up @@ -32,6 +32,7 @@ Decompositions
dpnp.linalg.cholesky
dpnp.linalg.qr
dpnp.linalg.svd
dpnp.linalg.svdvals

Matrix eigenvalues
------------------
Expand Down
4 changes: 2 additions & 2 deletions dpnp/linalg/dpnp_iface_linalg.py
Original file line number Diff line number Diff line change
Expand Up @@ -1318,9 +1318,9 @@ def svd(a, full_matrices=True, compute_uv=True, hermitian=False):

def svdvals(x, /):
"""
Returns the singular values of a matrix (or a stack of matrices) ``x``.
Returns the singular values of a matrix (or a stack of matrices) `x`.

When ``x`` is a stack of matrices, the function will compute
When `x` is a stack of matrices, the function will compute
the singular values for each matrix in the stack.

Calling ``dpnp.linalg.svdvals(x)`` to get singular values is the same as
Expand Down
Loading