Skip to content

Commit f13e75d

Browse files
committed
clarify svd
1 parent 56d89a8 commit f13e75d

File tree

1 file changed

+2
-3
lines changed

1 file changed

+2
-3
lines changed

doc/specs/stdlib_linalg.md

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -911,9 +911,8 @@ Experimental
911911

912912
This subroutine computes the solution to the eigenproblem \( A \cdot \bar{v} - \lambda \cdot \bar{v} \), where \( A \) is a square, full-rank, `real` or `complex` matrix.
913913

914-
Result array `lambda` returns the eigenvalues of \( A \). The user can request eigenvectors to be returned:
915-
on output `left` may contain the left eigenvectors, `right` the right eigenvectors of \( A \).
916-
Each eigenvector is returned as a column of `left` of `right`.
914+
Result array `lambda` returns the eigenvalues of \( A \). The user can request eigenvectors to be returned: if provided, on output `left` will contain the left eigenvectors, `right` the right eigenvectors of \( A \).
915+
Both `left` and `right` are rank-2 arrays, where eigenvectors are stored as columns.
917916
The solver is based on LAPACK's `*GEEV` backends.
918917

919918
### Syntax

0 commit comments

Comments
 (0)