From 07c14f97cc8d95688117d7f561edd3a214e56df6 Mon Sep 17 00:00:00 2001 From: julie Date: Tue, 13 Apr 2010 18:18:00 +0000 Subject: Add descriptions of the arguments work and uplo following Paul Roberts[NAG]'s comment sent to lapack@cs.utk.edu --- SRC/csyequb.f | 9 +++++++++ 1 file changed, 9 insertions(+) (limited to 'SRC/csyequb.f') diff --git a/SRC/csyequb.f b/SRC/csyequb.f index 0db5c7b1..cffd35c5 100644 --- a/SRC/csyequb.f +++ b/SRC/csyequb.f @@ -35,6 +35,12 @@ * Arguments * ========= * +* UPLO (input) CHARACTER*1 +* Specifies whether the details of the factorization are stored +* as an upper or lower triangular matrix. +* = 'U': Upper triangular, form is A = U*D*U**T; +* = 'L': Lower triangular, form is A = L*D*L**T. +* * N (input) INTEGER * The order of the matrix A. N >= 0. * @@ -58,6 +64,9 @@ * Absolute value of largest matrix element. If AMAX is very * close to overflow or very close to underflow, the matrix * should be scaled. +* +* WORK (workspace) COMPLEX array, dimension (3*N) +* * INFO (output) INTEGER * = 0: successful exit * < 0: if INFO = -i, the i-th argument had an illegal value -- cgit v1.2.3