diff options
Diffstat (limited to 'SRC/ssygvd.f')
-rw-r--r-- | SRC/ssygvd.f | 12 |
1 files changed, 4 insertions, 8 deletions
diff --git a/SRC/ssygvd.f b/SRC/ssygvd.f index b1798af4..28b90816 100644 --- a/SRC/ssygvd.f +++ b/SRC/ssygvd.f @@ -91,8 +91,7 @@ *> upper triangular part of the matrix A. If UPLO = 'L', *> the leading N-by-N lower triangular part of A contains *> the lower triangular part of the matrix A. -*> \endverbatim -*> \verbatim +*> *> On exit, if JOBZ = 'V', then if INFO = 0, A contains the *> matrix Z of eigenvectors. The eigenvectors are normalized *> as follows: @@ -117,8 +116,7 @@ *> upper triangular part of the matrix B. If UPLO = 'L', *> the leading N-by-N lower triangular part of B contains *> the lower triangular part of the matrix B. -*> \endverbatim -*> \verbatim +*> *> On exit, if INFO <= N, the part of B containing the matrix is *> overwritten by the triangular factor U or L from the Cholesky *> factorization B = U**T*U or B = L*L**T. @@ -149,8 +147,7 @@ *> If N <= 1, LWORK >= 1. *> If JOBZ = 'N' and N > 1, LWORK >= 2*N+1. *> If JOBZ = 'V' and N > 1, LWORK >= 1 + 6*N + 2*N**2. -*> \endverbatim -*> \verbatim +*> *> If LWORK = -1, then a workspace query is assumed; the routine *> only calculates the optimal sizes of the WORK and IWORK *> arrays, returns these values as the first entries of the WORK @@ -171,8 +168,7 @@ *> If N <= 1, LIWORK >= 1. *> If JOBZ = 'N' and N > 1, LIWORK >= 1. *> If JOBZ = 'V' and N > 1, LIWORK >= 3 + 5*N. -*> \endverbatim -*> \verbatim +*> *> If LIWORK = -1, then a workspace query is assumed; the *> routine only calculates the optimal sizes of the WORK and *> IWORK arrays, returns these values as the first entries of |