Skip to content

Commit a9a4288

Browse files
authored
Merge pull request #855 from mtowara/markust/fix_doc
fix dlasd0 / slasd0 documentation issue
2 parents 824c1cf + 3735794 commit a9a4288

File tree

2 files changed

+12
-8
lines changed

2 files changed

+12
-8
lines changed

SRC/dlasd0.f

Lines changed: 6 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -79,10 +79,11 @@
7979
*> On exit, E has been destroyed.
8080
*> \endverbatim
8181
*>
82-
*> \param[out] U
82+
*> \param[in,out] U
8383
*> \verbatim
8484
*> U is DOUBLE PRECISION array, dimension (LDU, N)
85-
*> On exit, U contains the left singular vectors.
85+
*> On exit, U contains the left singular vectors,
86+
*> if U passed in as (N, N) Identity.
8687
*> \endverbatim
8788
*>
8889
*> \param[in] LDU
@@ -91,10 +92,11 @@
9192
*> On entry, leading dimension of U.
9293
*> \endverbatim
9394
*>
94-
*> \param[out] VT
95+
*> \param[in,out] VT
9596
*> \verbatim
9697
*> VT is DOUBLE PRECISION array, dimension (LDVT, M)
97-
*> On exit, VT**T contains the right singular vectors.
98+
*> On exit, VT**T contains the right singular vectors,
99+
*> if VT passed in as (M, M) Identity.
98100
*> \endverbatim
99101
*>
100102
*> \param[in] LDVT

SRC/slasd0.f

Lines changed: 6 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -79,10 +79,11 @@
7979
*> On exit, E has been destroyed.
8080
*> \endverbatim
8181
*>
82-
*> \param[out] U
82+
*> \param[in,out] U
8383
*> \verbatim
8484
*> U is REAL array, dimension (LDU, N)
85-
*> On exit, U contains the left singular vectors.
85+
*> On exit, U contains the left singular vectors,
86+
*> if U passed in as (N, N) Identity.
8687
*> \endverbatim
8788
*>
8889
*> \param[in] LDU
@@ -91,10 +92,11 @@
9192
*> On entry, leading dimension of U.
9293
*> \endverbatim
9394
*>
94-
*> \param[out] VT
95+
*> \param[in,out] VT
9596
*> \verbatim
9697
*> VT is REAL array, dimension (LDVT, M)
97-
*> On exit, VT**T contains the right singular vectors.
98+
*> On exit, VT**T contains the right singular vectors,
99+
*> if VT passed in as (M, M) Identity.
98100
*> \endverbatim
99101
*>
100102
*> \param[in] LDVT

0 commit comments

Comments
 (0)