diff options
author | Julie <julie@cs.utk.edu> | 2016-06-14 22:21:56 -0700 |
---|---|---|
committer | Julie <julie@cs.utk.edu> | 2016-06-14 22:21:56 -0700 |
commit | 41a611c62895448c72decbc6e864667bad10f5ec (patch) | |
tree | 6c16465918cf625820219c87c7689ff7079ad5d3 /SRC/zhbgvx.f | |
parent | 455a8eb6f490490b9d49ad9131eda9c1cb578911 (diff) | |
download | lapack-41a611c62895448c72decbc6e864667bad10f5ec.tar.gz lapack-41a611c62895448c72decbc6e864667bad10f5ec.tar.bz2 lapack-41a611c62895448c72decbc6e864667bad10f5ec.zip |
Update Descriptions for IL, IU, VL and VU
reported by Alex Zotkevich, Intel Co. on april 11th 2016
See http://icl.cs.utk.edu/lapack-forum/viewtopic.php?f=13&t=4951
Diffstat (limited to 'SRC/zhbgvx.f')
-rw-r--r-- | SRC/zhbgvx.f | 15 |
1 files changed, 12 insertions, 3 deletions
diff --git a/SRC/zhbgvx.f b/SRC/zhbgvx.f index e8596e45..5a839967 100644 --- a/SRC/zhbgvx.f +++ b/SRC/zhbgvx.f @@ -153,13 +153,17 @@ *> \param[in] VL *> \verbatim *> VL is DOUBLE PRECISION +*> +*> If RANGE='V', the lower bound of the interval to +*> be searched for eigenvalues. VL < VU. +*> Not referenced if RANGE = 'A' or 'I'. *> \endverbatim *> *> \param[in] VU *> \verbatim *> VU is DOUBLE PRECISION *> -*> If RANGE='V', the lower and upper bounds of the interval to +*> If RANGE='V', the upper bound of the interval to *> be searched for eigenvalues. VL < VU. *> Not referenced if RANGE = 'A' or 'I'. *> \endverbatim @@ -167,14 +171,19 @@ *> \param[in] IL *> \verbatim *> IL is INTEGER +*> +*> If RANGE='I', the index of the +*> smallest eigenvalue to be returned. +*> 1 <= IL <= IU <= N, if N > 0; IL = 1 and IU = 0 if N = 0. +*> Not referenced if RANGE = 'A' or 'V'. *> \endverbatim *> *> \param[in] IU *> \verbatim *> IU is INTEGER *> -*> If RANGE='I', the indices (in ascending order) of the -*> smallest and largest eigenvalues to be returned. +*> If RANGE='I', the index of the +*> largest eigenvalue to be returned. *> 1 <= IL <= IU <= N, if N > 0; IL = 1 and IU = 0 if N = 0. *> Not referenced if RANGE = 'A' or 'V'. *> \endverbatim |