diff options
author | julie <julielangou@users.noreply.github.com> | 2016-02-23 05:09:48 +0000 |
---|---|---|
committer | julie <julielangou@users.noreply.github.com> | 2016-02-23 05:09:48 +0000 |
commit | e231fa283ee3efc2005318f3cf5f43d338a03166 (patch) | |
tree | b25aa31aad8120735ec37199f2c80f19d35f0c03 /SRC/slascl.f | |
parent | 3377a8bb32b1ff77c8aa144e67da6ce8300890e3 (diff) | |
download | lapack-e231fa283ee3efc2005318f3cf5f43d338a03166.tar.gz lapack-e231fa283ee3efc2005318f3cf5f43d338a03166.tar.bz2 lapack-e231fa283ee3efc2005318f3cf5f43d338a03166.zip |
APPLYING INTEL PATCHES sent to Julie on Feb 19th 2016 by Dima from INTEL (dmitry.g.baksheev@intel.com)
Subject: [PATCH 05/42] Fix ?LASCL2, ?LARSCL, ?LASCL documentation - correctly describe LDX
Diffstat (limited to 'SRC/slascl.f')
-rw-r--r-- | SRC/slascl.f | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/SRC/slascl.f b/SRC/slascl.f index bacf86ed..cdc8ca83 100644 --- a/SRC/slascl.f +++ b/SRC/slascl.f @@ -114,7 +114,11 @@ *> \param[in] LDA *> \verbatim *> LDA is INTEGER -*> The leading dimension of the array A. LDA >= max(1,M). +*> The leading dimension of the array A. +*> If TYPE = 'G', 'L', 'U', 'H', LDA >= max(1,M); +*> TYPE = 'B', LDA >= KL+1; +*> TYPE = 'Q', LDA >= KU+1; +*> TYPE = 'Z', LDA >= 2*KL+KU+1. *> \endverbatim *> *> \param[out] INFO |