Skip to content

Commit

Permalink
Merge pull request Reference-LAPACK#833 from weslleyspereira/fix-258
Browse files Browse the repository at this point in the history
Adds comment related to zero-sized matrix B in GELSY
  • Loading branch information
langou authored May 24, 2023
2 parents 9f4b5d2 + b788b4a commit 0e91dd3
Show file tree
Hide file tree
Showing 4 changed files with 8 additions and 0 deletions.
2 changes: 2 additions & 0 deletions SRC/cgelsy.f
Original file line number Diff line number Diff line change
Expand Up @@ -116,6 +116,7 @@
*> B is COMPLEX array, dimension (LDB,NRHS)
*> On entry, the M-by-NRHS right hand side matrix B.
*> On exit, the N-by-NRHS solution matrix X.
*> If M = 0 or N = 0, B is not referenced.
*> \endverbatim
*>
*> \param[in] LDB
Expand Down Expand Up @@ -148,6 +149,7 @@
*> The effective rank of A, i.e., the order of the submatrix
*> R11. This is the same as the order of the submatrix T11
*> in the complete orthogonal factorization of A.
*> If NRHS = 0, RANK = 0 on output.
*> \endverbatim
*>
*> \param[out] WORK
Expand Down
2 changes: 2 additions & 0 deletions SRC/dgelsy.f
Original file line number Diff line number Diff line change
Expand Up @@ -115,6 +115,7 @@
*> B is DOUBLE PRECISION array, dimension (LDB,NRHS)
*> On entry, the M-by-NRHS right hand side matrix B.
*> On exit, the N-by-NRHS solution matrix X.
*> If M = 0 or N = 0, B is not referenced.
*> \endverbatim
*>
*> \param[in] LDB
Expand Down Expand Up @@ -147,6 +148,7 @@
*> The effective rank of A, i.e., the order of the submatrix
*> R11. This is the same as the order of the submatrix T11
*> in the complete orthogonal factorization of A.
*> If NRHS = 0, RANK = 0 on output.
*> \endverbatim
*>
*> \param[out] WORK
Expand Down
2 changes: 2 additions & 0 deletions SRC/sgelsy.f
Original file line number Diff line number Diff line change
Expand Up @@ -115,6 +115,7 @@
*> B is REAL array, dimension (LDB,NRHS)
*> On entry, the M-by-NRHS right hand side matrix B.
*> On exit, the N-by-NRHS solution matrix X.
*> If M = 0 or N = 0, B is not referenced.
*> \endverbatim
*>
*> \param[in] LDB
Expand Down Expand Up @@ -147,6 +148,7 @@
*> The effective rank of A, i.e., the order of the submatrix
*> R11. This is the same as the order of the submatrix T11
*> in the complete orthogonal factorization of A.
*> If NRHS = 0, RANK = 0 on output.
*> \endverbatim
*>
*> \param[out] WORK
Expand Down
2 changes: 2 additions & 0 deletions SRC/zgelsy.f
Original file line number Diff line number Diff line change
Expand Up @@ -116,6 +116,7 @@
*> B is COMPLEX*16 array, dimension (LDB,NRHS)
*> On entry, the M-by-NRHS right hand side matrix B.
*> On exit, the N-by-NRHS solution matrix X.
*> If M = 0 or N = 0, B is not referenced.
*> \endverbatim
*>
*> \param[in] LDB
Expand Down Expand Up @@ -148,6 +149,7 @@
*> The effective rank of A, i.e., the order of the submatrix
*> R11. This is the same as the order of the submatrix T11
*> in the complete orthogonal factorization of A.
*> If NRHS = 0, RANK = 0 on output.
*> \endverbatim
*>
*> \param[out] WORK
Expand Down

0 comments on commit 0e91dd3

Please sign in to comment.