Correct comments and Doxygen generation following comments from Sa-Lin Cheng Bernstei...
authorjulie <julielangou@users.noreply.github.com>
Fri, 10 Aug 2012 17:32:23 +0000 (17:32 +0000)
committerjulie <julielangou@users.noreply.github.com>
Fri, 10 Aug 2012 17:32:23 +0000 (17:32 +0000)
While looking at the new lapack version (v3.4.1) and going through the routines on http://www.netlib.org/lapack/lapack_routine/, we found some errors and thought that we should report them. Below is the list of the errors.

====================================================================
(1) Should be "\ingroup complex16OTHERsolve" and not "\ingroup complex16OTHERcomputational" because they are driver routines; in addition, in the line just below SUBROUTINE <routinename>, it should be driver routine:
sgtsv.f
sgtsvx.f
sptsv.f
sptsvx.f
dgtsv.f
dgtsvx.f
dptsv.f
dptsvx.f
cgtsv.f
cgtsvx.f
cptsv.f
cptsvx.f
zgtsv.f
zgtsvx.f
zptsv.f
zptsvx.f

(2) Should be "\ingroup complex16SYsolve" and not "\ingroup complex16OTHERcomputational" because they are driver routines; in addition, in the line just below SUBROUTINE <routinename>, it should be driver routine:
ssysvxx.f
dsysvxx.f

(3) Should be "\ingroup realOTHERcomputational" and not ""\ingroup auxOTHERcomputational":
spttrf.f

(4) Should be "\ingroup doubleOTHERcomputational" and not ""\ingroup auxOTHERcomputational":
dpttrf.f

(5) Should be "symmetric matrix" and not "Hermitian indefinite matrix" in "\par Purpose:"
ssytri2.f
dsytri2.f
csytri2.f
zsytri2.f

(6) Should be "\ingroup realGEsing" and not "\ingroup realGEcomputational":
sgejsv.f
dgejsv.f

69 files changed:
DOCS/Doxyfile
DOCS/groups-usr.dox
SRC/cgtcon.f
SRC/cgtrfs.f
SRC/cgtsv.f
SRC/cgtsvx.f
SRC/cgttrf.f
SRC/cgttrs.f
SRC/cgtts2.f
SRC/cptcon.f
SRC/cpteqr.f
SRC/cptrfs.f
SRC/cptsv.f
SRC/cptsvx.f
SRC/cpttrf.f
SRC/cpttrs.f
SRC/cptts2.f
SRC/csytri2.f
SRC/dgejsv.f
SRC/dgtcon.f
SRC/dgtrfs.f
SRC/dgtsv.f
SRC/dgtsvx.f
SRC/dgttrf.f
SRC/dgttrs.f
SRC/dgtts2.f
SRC/dptcon.f
SRC/dpteqr.f
SRC/dptrfs.f
SRC/dptsv.f
SRC/dptsvx.f
SRC/dpttrf.f
SRC/dpttrs.f
SRC/dptts2.f
SRC/dsysvxx.f
SRC/dsytri2.f
SRC/sgejsv.f
SRC/sgtcon.f
SRC/sgtrfs.f
SRC/sgtsv.f
SRC/sgtsvx.f
SRC/sgttrf.f
SRC/sgttrs.f
SRC/sgtts2.f
SRC/sptcon.f
SRC/spteqr.f
SRC/sptrfs.f
SRC/sptsv.f
SRC/sptsvx.f
SRC/spttrs.f
SRC/sptts2.f
SRC/ssysvxx.f
SRC/ssytri2.f
SRC/zgtcon.f
SRC/zgtrfs.f
SRC/zgtsv.f
SRC/zgtsvx.f
SRC/zgttrf.f
SRC/zgttrs.f
SRC/zgtts2.f
SRC/zptcon.f
SRC/zpteqr.f
SRC/zptrfs.f
SRC/zptsv.f
SRC/zptsvx.f
SRC/zpttrf.f
SRC/zpttrs.f
SRC/zptts2.f
SRC/zsytri2.f

index 320db7faede9af96706957fac63d249a0bb72e98..9098aa87f4820696bc6ae4f3cebe3af0e665e3b8 100644 (file)
@@ -32,7 +32,7 @@ PROJECT_NAME           = LAPACK
 # This could be handy for archiving the generated documentation or 
 # if some version control system is used.
 
-PROJECT_NUMBER         = 3.4.1
+PROJECT_NUMBER         = 3.4.2
 
 # Using the PROJECT_BRIEF tag one can provide an optional one line description 
 # for a project that appears at the top of each page and should give viewer 
index 074ce29fbbb4242b13680cd31e72aa438fedd303..feb134f118bf188f0e643210a67528f961db860c 100644 (file)
  * @defgroup PO  Positive Definite Matrix
  *   @ingroup lapack
  *   This is the group of Positive Definite routines
+ * @defgroup GT  General tridiagonal Matrix
+ *   @ingroup lapack
+ *   This is the group of General tridiagonal routines
+ * @defgroup PT  Positive Definite tridiagonal Matrix
+ *   @ingroup lapack
+ *   This is the group of Positive Definite tridiagonal routines
  * @defgroup auxOTHERauxiliary  Other Auxiliary Routines
  *   @ingroup lapack
  *   This is the group of Other Auxiliary routines
  * @defgroup solvePO  Linear Solve
  *   @ingroup PO
  *   This is the group of Linear Solve Driver routines
+ * @defgroup solveGT  Linear Solve
+ *   @ingroup GT
+ *   This is the group of Linear Solve Driver routines
+ * @defgroup solvePT  Linear Solve
+ *   @ingroup PT
+ *   This is the group of Linear Solve Driver routines
  * @defgroup eigenGE  Eigenvalue
  *   @ingroup GE
  *   This is the group of Eigenvalue Driver routines
  * @defgroup computationalPO  Computational routines
  *   @ingroup PO
  *   This is the group of Computational routines
+ * @defgroup computationalGT  Computational routines
+ *   @ingroup GT
+ *   This is the group of Computational routines
+ * @defgroup computationalPT  Computational routines
+ *   @ingroup PT
+ *   This is the group of Computational routines
  * @defgroup auxiliaryGE  Auxiliary routines
  *   @ingroup GE
  *   This is the group of Auxiliary routines
  * @defgroup auxiliaryPO  Auxiliary routines
  *   @ingroup PO
  *   This is the group of Auxiliary routines
+ * @defgroup auxiliaryGT  Auxiliary routines
+ *   @ingroup GT
+ *   This is the group of Auxiliary routines
+ * @defgroup auxiliaryPT  Auxiliary routines
+ *   @ingroup PT
+ *   This is the group of Auxiliary routines
  *
  ****
  *
  * @defgroup doubleGBsolve double
  *   @ingroup solveGB
  *   This is the group of double solve driver functions for GB matrices
+ * @defgroup doubleGTsolve double
+ *   @ingroup solveGT
+ *   This is the group of double solve driver functions for GT matrices
+ * @defgroup doublePTsolve double
+ *   @ingroup solvePT
+ *   This is the group of double solve driver functions for PT matrices
  * @defgroup doubleGEeigen double
  *   @ingroup eigenGE 
  *   This is the group of double eigenvalue driver functions for GE matrices
  * @defgroup doubleGBcomputational double
  *   @ingroup computationalGB
  *   This is the group of double computational functions for GB matrices
+ * @defgroup doubleGTcomputational double
+ *   @ingroup computationalGT
+ *   This is the group of double computational functions for GT matrices
+ * @defgroup doublePTcomputational double
+ *   @ingroup computationalPT
+ *   This is the group of double computational functions for PT matrices
  * @defgroup doubleGEauxiliary double
  *   @ingroup auxiliaryGE 
  *   This is the group of double auxiliary functions for GE matrices
  * @defgroup doubleGBauxiliary double
  *   @ingroup auxiliaryGB 
  *   This is the group of double auxiliary functions for GB matrices
+ * @defgroup doublePTauxiliary double
+ *   @ingroup auxiliaryPT 
+ *   This is the group of double auxiliary functions for PT matrices
+ * @defgroup doubleGTauxiliary double
+ *   @ingroup auxiliaryGT 
+ *   This is the group of double auxiliary functions for GT matrices
  *
  ****
  *
  * @defgroup realGBsolve real
  *   @ingroup solveGB
  *   This is the group of real solve driver functions for GB matrices
+ * @defgroup realGTsolve real
+ *   @ingroup solveGT
+ *   This is the group of real solve driver functions for GT matrices
+ * @defgroup realPTsolve real
+ *   @ingroup solvePT
+ *   This is the group of real solve driver functions for PT matrices
  * @defgroup realGEeigen real
  *   @ingroup eigenGE 
  *   This is the group of real eigenvalue driver functions for GE matrices
  * @defgroup realGBcomputational real
  *   @ingroup computationalGB
  *   This is the group of real computational functions for GB matrices
+ * @defgroup realPTcomputational real
+ *   @ingroup computationalPT
+ *   This is the group of real computational functions for PT matrices
+ * @defgroup realGTcomputational real
+ *   @ingroup computationalGT
+ *   This is the group of real computational functions for GT matrices
  * @defgroup realGEauxiliary real
  *   @ingroup auxiliaryGE 
  *   This is the group of real auxiliary functions for GE matrices
  * @defgroup realGBauxiliary real
  *   @ingroup auxiliaryGB 
  *   This is the group of real auxiliary functions for GB matrices
+ * @defgroup realGTauxiliary real
+ *   @ingroup auxiliaryGT
+ *   This is the group of real auxiliary functions for GT matrices
+ * @defgroup realPTauxiliary real
+ *   @ingroup auxiliaryPT
+ *   This is the group of real auxiliary functions for PT matrices
  *
  ****
  *
  * @defgroup complexGBsolve complex
  *   @ingroup solveGB
  *   This is the group of complex solve driver functions for GB matrices
+ * @defgroup complexGTsolve complex
+ *   @ingroup solveGT
+ *   This is the group of complex solve driver functions for GT matrices
+ * @defgroup complexPTsolve complex
+ *   @ingroup solvePT
+ *   This is the group of complex solve driver functions for PT matrices
  * @defgroup complexGEeigen complex
  *   @ingroup eigenGE 
  *   This is the group of complex eigenvalue driver functions for GE matrices
  * @defgroup complexGBcomputational complex
  *   @ingroup computationalGB
  *   This is the group of complex computational functions for GB matrices
+ * @defgroup complexGTcomputational complex
+ *   @ingroup computationalGT
+ *   This is the group of complex computational functions for GT matrices
+ * @defgroup complexPTcomputational complex
+ *   @ingroup computationalPT
+ *   This is the group of complex computational functions for PT matrices
  * @defgroup complexGEauxiliary complex
  *   @ingroup auxiliaryGE 
  *   This is the group of complex auxiliary functions for GE matrices
  * @defgroup complex16GBsolve complex16
  *   @ingroup solveGB
  *   This is the group of complex16 solve driver functions for GB matrices
+ * @defgroup complex16GTsolve complex16
+ *   @ingroup solveGT
+ *   This is the group of complex16 solve driver functions for GT matrices
+ * @defgroup complex16PTsolve complex16
+ *   @ingroup solvePT
+ *   This is the group of complex16 solve driver functions for PT matrices
  * @defgroup complex16GEeigen complex16
  *   @ingroup eigenGE 
  *   This is the group of complex16 eigenvalue driver functions for GE matrices
  * @defgroup complex16GBcomputational complex16
  *   @ingroup computationalGB
  *   This is the group of complex16 computational functions for GB matrices
+ * @defgroup complex16GTcomputational complex16
+ *   @ingroup computationalGT
+ *   This is the group of complex16 computational functions for GT matrices
+ * @defgroup complex16PTcomputational complex16
+ *   @ingroup computationalPT
+ *   This is the group of complex16 computational functions for PT matrices
  * @defgroup complex16GEauxiliary complex16
  *   @ingroup auxiliaryGE 
  *   This is the group of complex16 auxiliary functions for GE matrices
index eeae11994802a19c2639ab7f9b84c9f628a1a3ff..348782d70bead318bb5f6053ac172beb32014502 100644 (file)
 *
 *> \date November 2011
 *
-*> \ingroup complexOTHERcomputational
+*> \ingroup complexGTcomputational
 *
 *  =====================================================================
       SUBROUTINE CGTCON( NORM, N, DL, D, DU, DU2, IPIV, ANORM, RCOND,
index 8a67568b9542700f39b20d029a8438468547a29b..5f9e484c21c2f57987681de79403df3c7b521dde 100644 (file)
 *
 *> \date November 2011
 *
-*> \ingroup complexOTHERcomputational
+*> \ingroup complexGTcomputational
 *
 *  =====================================================================
       SUBROUTINE CGTRFS( TRANS, N, NRHS, DL, D, DU, DLF, DF, DUF, DU2,
index 4f3687230a908571bfb7917ac3973e840f6f16f8..027c5722bab9a20588d783b8d1ff60add93b8102 100644 (file)
@@ -1,4 +1,4 @@
-*> \brief \b CGTSV
+*> \brief <b> CGTSV computes the solution to system of linear equations A * X = B for GT matrices <b>
 *
 *  =========== DOCUMENTATION ===========
 *
 *
 *> \date November 2011
 *
-*> \ingroup complexOTHERcomputational
+*> \ingroup complexGTsolve
 *
 *  =====================================================================
       SUBROUTINE CGTSV( N, NRHS, DL, D, DU, B, LDB, INFO )
 *
-*  -- LAPACK computational routine (version 3.4.0) --
+*  -- LAPACK driver routine (version 3.4.0) --
 *  -- LAPACK is a software package provided by Univ. of Tennessee,    --
 *  -- Univ. of California Berkeley, Univ. of Colorado Denver and NAG Ltd..--
 *     November 2011
index 01f7b46dce32b224333081e0df5eace68025a7dc..3ed75192ae47cb1bb972a8a61ef8d7ee2cb4de4f 100644 (file)
@@ -1,4 +1,4 @@
-*> \brief \b CGTSVX
+*> \brief <b> CGTSVX computes the solution to system of linear equations A * X = B for GT matrices <b>
 *
 *  =========== DOCUMENTATION ===========
 *
 *
 *> \date April 2012
 *
-*> \ingroup complexOTHERcomputational
+*> \ingroup complexGTsolve
 *
 *  =====================================================================
       SUBROUTINE CGTSVX( FACT, TRANS, N, NRHS, DL, D, DU, DLF, DF, DUF,
      $                   DU2, IPIV, B, LDB, X, LDX, RCOND, FERR, BERR,
      $                   WORK, RWORK, INFO )
 *
-*  -- LAPACK computational routine (version 3.4.1) --
+*  -- LAPACK driver routine (version 3.4.1) --
 *  -- LAPACK is a software package provided by Univ. of Tennessee,    --
 *  -- Univ. of California Berkeley, Univ. of Colorado Denver and NAG Ltd..--
 *     April 2012
index 78997ac906cf609970b2358288ec3607ab4a9440..55cbb5f8bf007ea5c8a692b073b553c4ece9220e 100644 (file)
 *
 *> \date November 2011
 *
-*> \ingroup complexOTHERcomputational
+*> \ingroup complexGTcomputational
 *
 *  =====================================================================
       SUBROUTINE CGTTRF( N, DL, D, DU, DU2, IPIV, INFO )
index 2207dcc129646010d8973447ac7c756ee4dab925..dd631823b6b9eeb44007c3126c2e8e68c8169478 100644 (file)
 *
 *> \date November 2011
 *
-*> \ingroup complexOTHERcomputational
+*> \ingroup complexGTcomputational
 *
 *  =====================================================================
       SUBROUTINE CGTTRS( TRANS, N, NRHS, DL, D, DU, DU2, IPIV, B, LDB,
index c6014c4b8836a5a39f50d7d0c9073a3143a2c422..7c59f2d5204675545b38480bf93d7992fa4c4807 100644 (file)
 *
 *> \date November 2011
 *
-*> \ingroup complexOTHERauxiliary
+*> \ingroup complexGTcomputational
 *
 *  =====================================================================
       SUBROUTINE CGTTS2( ITRANS, N, NRHS, DL, D, DU, DU2, IPIV, B, LDB )
 *
-*  -- LAPACK auxiliary routine (version 3.4.0) --
+*  -- LAPACK computational routine (version 3.4.0) --
 *  -- LAPACK is a software package provided by Univ. of Tennessee,    --
 *  -- Univ. of California Berkeley, Univ. of Colorado Denver and NAG Ltd..--
 *     November 2011
index c0b78dbe09c59dbfb81e3b23ec9b718ad0374c78..9e019852ad19909b6a4d2dd3debbb30bc3e1e835 100644 (file)
 *
 *> \date November 2011
 *
-*> \ingroup complexOTHERcomputational
+*> \ingroup complexPTcomputational
 *
 *> \par Further Details:
 *  =====================
index 68dd24aa1613b69c949325b9d1a00e001c477e2a..983836e56372d614883bb12b797bea8f7e439e26 100644 (file)
 *
 *> \date November 2011
 *
-*> \ingroup complexOTHERcomputational
+*> \ingroup complexPTcomputational
 *
 *  =====================================================================
       SUBROUTINE CPTEQR( COMPZ, N, D, E, Z, LDZ, WORK, INFO )
index 02183c4b65e1c433fc22eb63cfc30d0ef8a16137..fbdc451f3acc4951966f000414b094a20d1ebb82 100644 (file)
 *
 *> \date November 2011
 *
-*> \ingroup complexOTHERcomputational
+*> \ingroup complexPTcomputational
 *
 *  =====================================================================
       SUBROUTINE CPTRFS( UPLO, N, NRHS, D, E, DF, EF, B, LDB, X, LDX,
index 935002c69dfdcc59dad95fd324e6bf4030f3c088..b075de5e2d99ba2fdfd884a05e9e89d0d8c7a49d 100644 (file)
@@ -1,4 +1,4 @@
-*> \brief \b CPTSV
+*> \brief <b> CPTSV computes the solution to system of linear equations A * X = B for PT matrices</b>
 *
 *  =========== DOCUMENTATION ===========
 *
 *
 *> \date November 2011
 *
-*> \ingroup complexOTHERcomputational
+*> \ingroup complexPTsolve
 *
 *  =====================================================================
       SUBROUTINE CPTSV( N, NRHS, D, E, B, LDB, INFO )
 *
-*  -- LAPACK computational routine (version 3.4.0) --
+*  -- LAPACK driver routine (version 3.4.0) --
 *  -- LAPACK is a software package provided by Univ. of Tennessee,    --
 *  -- Univ. of California Berkeley, Univ. of Colorado Denver and NAG Ltd..--
 *     November 2011
index cd7ae8628d729497cc118868b08f0818909f95e2..06470985982bc32a8428789cecd8c4c883f08626 100644 (file)
@@ -1,4 +1,4 @@
-*> \brief \b CPTSVX
+*> \brief <b> CPTSVX computes the solution to system of linear equations A * X = B for PT matrices</b>
 *
 *  =========== DOCUMENTATION ===========
 *
 *
 *> \date April 2012
 *
-*> \ingroup complexOTHERcomputational
+*> \ingroup complexPTsolve
 *
 *  =====================================================================
       SUBROUTINE CPTSVX( FACT, N, NRHS, D, E, DF, EF, B, LDB, X, LDX,
      $                   RCOND, FERR, BERR, WORK, RWORK, INFO )
 *
-*  -- LAPACK computational routine (version 3.4.1) --
+*  -- LAPACK driver routine (version 3.4.1) --
 *  -- LAPACK is a software package provided by Univ. of Tennessee,    --
 *  -- Univ. of California Berkeley, Univ. of Colorado Denver and NAG Ltd..--
 *     April 2012
index faaa100e07a61fc409e28a7c68702d1206bba520..eb543601724cd6f0c93da3024086fbb3f407ed16 100644 (file)
@@ -87,7 +87,7 @@
 *
 *> \date November 2011
 *
-*> \ingroup complexOTHERcomputational
+*> \ingroup complexPTcomputational
 *
 *  =====================================================================
       SUBROUTINE CPTTRF( N, D, E, INFO )
index 726ed4c582cc1874c5b98edb33c4d1eede4c4c68..a556203635d5c8b1e0f7a88f663c636a5baaa5ea 100644 (file)
 *
 *> \date November 2011
 *
-*> \ingroup complexOTHERcomputational
+*> \ingroup complexPTcomputational
 *
 *  =====================================================================
       SUBROUTINE CPTTRS( UPLO, N, NRHS, D, E, B, LDB, INFO )
index 72ca60894d94445cfa0e97454a4dae4a19e8575b..899b544ef65e23ac8192872ff9da2e58cae68f93 100644 (file)
 *
 *> \date November 2011
 *
-*> \ingroup complexOTHERcomputational
+*> \ingroup complexPTcomputational
 *
 *  =====================================================================
       SUBROUTINE CPTTS2( IUPLO, N, NRHS, D, E, B, LDB )
index 9bdf422a2fdb1c1fe975fcc41d6c7f9fa3e43889..870e82915d26d09f4f6d7c39ba796191ba6931b2 100644 (file)
@@ -35,7 +35,7 @@
 *>
 *> \verbatim
 *>
-*> CSYTRI2 computes the inverse of a COMPLEX hermitian indefinite matrix
+*> CSYTRI2 computes the inverse of a COMPLEX symmetric indefinite matrix
 *> A using the factorization A = U*D*U**T or A = L*D*L**T computed by
 *> CSYTRF. CSYTRI2 sets the LEADING DIMENSION of the workspace
 *> before calling CSYTRI2X that actually computes the inverse.
index a63e72c392fab3309b2968d631c960687b609c96..03bd7a75bb1c4ea0f0ce292e540cbe1eb57008ee 100644 (file)
 *
 *> \date November 2011
 *
-*> \ingroup doubleGEcomputational
+*> \ingroup doubleGEsing
 *
 *> \par Further Details:
 *  =====================
index 500fa0dfb3a39143ecf87c887a9168d0e43a6e69..8e7ae49754b954e69f1f44769f7501d31ca82ad0 100644 (file)
 *
 *> \date November 2011
 *
-*> \ingroup doubleOTHERcomputational
+*> \ingroup doubleGTcomputational
 *
 *  =====================================================================
       SUBROUTINE DGTCON( NORM, N, DL, D, DU, DU2, IPIV, ANORM, RCOND,
index 932945b1d6bf3234fc06770e703fa1b4eed119bf..e1226c124600a595a3bb5c5700b68d81d70146fe 100644 (file)
 *
 *> \date November 2011
 *
-*> \ingroup doubleOTHERcomputational
+*> \ingroup doubleGTcomputational
 *
 *  =====================================================================
       SUBROUTINE DGTRFS( TRANS, N, NRHS, DL, D, DU, DLF, DF, DUF, DU2,
index b170b92cfbcfa5f9d339bcb3c8c71ec5399506ec..7b687e241b7a1a549e13d766662d1c35fae9fdd0 100644 (file)
@@ -1,4 +1,4 @@
-*> \brief \b DGTSV
+*> \brief <b> DGTSV computes the solution to system of linear equations A * X = B for GT matrices <b>
 *
 *  =========== DOCUMENTATION ===========
 *
 *
 *> \date November 2011
 *
-*> \ingroup doubleOTHERcomputational
+*> \ingroup doubleGTsolve
 *
 *  =====================================================================
       SUBROUTINE DGTSV( N, NRHS, DL, D, DU, B, LDB, INFO )
 *
-*  -- LAPACK computational routine (version 3.4.0) --
+*  -- LAPACK driver routine (version 3.4.0) --
 *  -- LAPACK is a software package provided by Univ. of Tennessee,    --
 *  -- Univ. of California Berkeley, Univ. of Colorado Denver and NAG Ltd..--
 *     November 2011
index 4f4818c7e732a114b8ee3450dabd5fc8430eb2ab..cc26402cd27d781ce8bc233be705b296bee1d02f 100644 (file)
@@ -1,4 +1,4 @@
-*> \brief \b DGTSVX
+*> \brief <b> DGTSVX computes the solution to system of linear equations A * X = B for GT matrices <b>
 *
 *  =========== DOCUMENTATION ===========
 *
 *
 *> \date April 2012
 *
-*> \ingroup doubleOTHERcomputational
+*> \ingroup doubleGTsolve
 *
 *  =====================================================================
       SUBROUTINE DGTSVX( FACT, TRANS, N, NRHS, DL, D, DU, DLF, DF, DUF,
      $                   DU2, IPIV, B, LDB, X, LDX, RCOND, FERR, BERR,
      $                   WORK, IWORK, INFO )
 *
-*  -- LAPACK computational routine (version 3.4.1) --
+*  -- LAPACK driver routine (version 3.4.1) --
 *  -- LAPACK is a software package provided by Univ. of Tennessee,    --
 *  -- Univ. of California Berkeley, Univ. of Colorado Denver and NAG Ltd..--
 *     April 2012
index 154fb31a46cf4766eae8713d13e18e8c1932eaea..bf4280af1d6671e1641725f361e61417d53af783 100644 (file)
 *
 *> \date November 2011
 *
-*> \ingroup doubleOTHERcomputational
+*> \ingroup doubleGTcomputational
 *
 *  =====================================================================
       SUBROUTINE DGTTRF( N, DL, D, DU, DU2, IPIV, INFO )
index 6507c49631b749795a2c3fbc1337ede0c451d6fd..d130b2748d0bd836225acab92bc1b22f24cd2759 100644 (file)
 *
 *> \date November 2011
 *
-*> \ingroup doubleOTHERcomputational
+*> \ingroup doubleGTcomputational
 *
 *  =====================================================================
       SUBROUTINE DGTTRS( TRANS, N, NRHS, DL, D, DU, DU2, IPIV, B, LDB,
index ec3881182d1a6c5082a8ab29e2e1633598f979da..042326e98beb380edb459a9a99cbf988addd76a7 100644 (file)
 *
 *> \date November 2011
 *
-*> \ingroup doubleOTHERauxiliary
+*> \ingroup doubleGTcomputational
 *
 *  =====================================================================
       SUBROUTINE DGTTS2( ITRANS, N, NRHS, DL, D, DU, DU2, IPIV, B, LDB )
 *
-*  -- LAPACK auxiliary routine (version 3.4.0) --
+*  -- LAPACK computational routine (version 3.4.0) --
 *  -- LAPACK is a software package provided by Univ. of Tennessee,    --
 *  -- Univ. of California Berkeley, Univ. of Colorado Denver and NAG Ltd..--
 *     November 2011
index d61b4b9b3a4cd16e8eaddc30609564ead3031bd8..4b4b72272f2c10dad374f2516d234e48d6648c7f 100644 (file)
 *
 *> \date November 2011
 *
-*> \ingroup doubleOTHERcomputational
+*> \ingroup doublePTcomputational
 *
 *> \par Further Details:
 *  =====================
index 60f330832990f4bbd7ae580863cffddfa3d1230c..bad3fd9c9b7519c53b162d85befaa3ba775019ce 100644 (file)
 *
 *> \date November 2011
 *
-*> \ingroup doubleOTHERcomputational
+*> \ingroup doublePTcomputational
 *
 *  =====================================================================
       SUBROUTINE DPTEQR( COMPZ, N, D, E, Z, LDZ, WORK, INFO )
index aa863a6ea351f573123ae6df975c3fd254252f55..47eb03b9d228c1ffb6dadf5f10674e3e404ce6fb 100644 (file)
 *
 *> \date November 2011
 *
-*> \ingroup doubleOTHERcomputational
+*> \ingroup doublePTcomputational
 *
 *  =====================================================================
       SUBROUTINE DPTRFS( N, NRHS, D, E, DF, EF, B, LDB, X, LDX, FERR,
index ca2478b9c668d315d5cea5a9dfd2148ce03ae1b0..bd06c710521e3fea8dc7d25973d7668230ddbc8a 100644 (file)
@@ -1,4 +1,4 @@
-*> \brief \b DPTSV
+*> \brief <b> DPTSV computes the solution to system of linear equations A * X = B for PT matrices</b>
 *
 *  =========== DOCUMENTATION ===========
 *
 *
 *> \date November 2011
 *
-*> \ingroup doubleOTHERcomputational
+*> \ingroup doublePTsolve
 *
 *  =====================================================================
       SUBROUTINE DPTSV( N, NRHS, D, E, B, LDB, INFO )
 *
-*  -- LAPACK computational routine (version 3.4.0) --
+*  -- LAPACK driver routine (version 3.4.0) --
 *  -- LAPACK is a software package provided by Univ. of Tennessee,    --
 *  -- Univ. of California Berkeley, Univ. of Colorado Denver and NAG Ltd..--
 *     November 2011
index f3dfe594f5471799fe217d1379450c5be7217880..25571c1865619ff18ea5daea7d1e7c458d326404 100644 (file)
@@ -1,4 +1,4 @@
-*> \brief \b DPTSVX
+*> \brief <b> DPTSVX computes the solution to system of linear equations A * X = B for PT matrices</b>
 *
 *  =========== DOCUMENTATION ===========
 *
 *
 *> \date April 2012
 *
-*> \ingroup doubleOTHERcomputational
+*> \ingroup doublePTsolve
 *
 *  =====================================================================
       SUBROUTINE DPTSVX( FACT, N, NRHS, D, E, DF, EF, B, LDB, X, LDX,
      $                   RCOND, FERR, BERR, WORK, INFO )
 *
-*  -- LAPACK computational routine (version 3.4.1) --
+*  -- LAPACK driver routine (version 3.4.1) --
 *  -- LAPACK is a software package provided by Univ. of Tennessee,    --
 *  -- Univ. of California Berkeley, Univ. of Colorado Denver and NAG Ltd..--
 *     April 2012
index 69784a517484ab8f9573c90bde5bc495ab715677..6707cd5d37e3e279fda0742c47d32aaa1114f473 100644 (file)
@@ -86,7 +86,7 @@
 *
 *> \date November 2011
 *
-*> \ingroup auxOTHERcomputational
+*> \ingroup doublePTcomputational
 *
 *  =====================================================================
       SUBROUTINE DPTTRF( N, D, E, INFO )
index e01976b25e051e15d9981d410965a8256bac8b9b..3c82a125b0f3f31af0faf585a220472df42815ef 100644 (file)
 *
 *> \date November 2011
 *
-*> \ingroup doubleOTHERcomputational
+*> \ingroup doublePTcomputational
 *
 *  =====================================================================
       SUBROUTINE DPTTRS( N, NRHS, D, E, B, LDB, INFO )
index 5d1b61288c60644ac0a1f085bf38de4d0677e201..3973fa103f0fd75c9e8ecb6a74a54981c65f8234 100644 (file)
@@ -97,7 +97,7 @@
 *
 *> \date November 2011
 *
-*> \ingroup doubleOTHERcomputational
+*> \ingroup doublePTcomputational
 *
 *  =====================================================================
       SUBROUTINE DPTTS2( N, NRHS, D, E, B, LDB )
index 5affc228cc9c92f3a9aaa8917ea97836c2159a4e..a254eb9a75e18c5b7eb4d1d55757403b4f117d00 100644 (file)
 *
 *> \date April 2012
 *
-*> \ingroup doubleSYcomputational
+*> \ingroup doubleSYdriver
 *
 *  =====================================================================
       SUBROUTINE DSYSVXX( FACT, UPLO, N, NRHS, A, LDA, AF, LDAF, IPIV,
      $                    N_ERR_BNDS, ERR_BNDS_NORM, ERR_BNDS_COMP,
      $                    NPARAMS, PARAMS, WORK, IWORK, INFO )
 *
-*  -- LAPACK computational routine (version 3.4.1) --
+*  -- LAPACK driver routine (version 3.4.1) --
 *  -- LAPACK is a software package provided by Univ. of Tennessee,    --
 *  -- Univ. of California Berkeley, Univ. of Colorado Denver and NAG Ltd..--
 *     April 2012
index 4da798133ab3f115f924ef8e926bbdccdd1a8c82..c53328f5c438259e92ee8906507b81c7d9d001b3 100644 (file)
@@ -35,7 +35,7 @@
 *>
 *> \verbatim
 *>
-*> DSYTRI2 computes the inverse of a DOUBLE PRECISION hermitian indefinite matrix
+*> DSYTRI2 computes the inverse of a DOUBLE PRECISION symmetric indefinite matrix
 *> A using the factorization A = U*D*U**T or A = L*D*L**T computed by
 *> DSYTRF. DSYTRI2 sets the LEADING DIMENSION of the workspace
 *> before calling DSYTRI2X that actually computes the inverse.
index 567976a84033fe8520646f8e54727bb82bb847d8..83eca968fff2fcfff0db48f752f91828c4e33b55 100644 (file)
 *
 *> \date November 2011
 *
-*> \ingroup realGEcomputational
+*> \ingroup realGEsing
 *
 *> \par Further Details:
 *  =====================
index 5bd0fc9ddd40fd806ef306a9feae65e06b4ffcea..ace930bac845cd5dcc96bcce4f8c4ef18eeccd3f 100644 (file)
 *
 *> \date November 2011
 *
-*> \ingroup realOTHERcomputational
+*> \ingroup realGTcomputational
 *
 *  =====================================================================
       SUBROUTINE SGTCON( NORM, N, DL, D, DU, DU2, IPIV, ANORM, RCOND,
index b8df1e212c8f796311ba2d828e6ce7d1729d9150..3ec030c79e3c9da7a86f5a31768875cec8221ab2 100644 (file)
 *
 *> \date November 2011
 *
-*> \ingroup realOTHERcomputational
+*> \ingroup realGTcomputational
 *
 *  =====================================================================
       SUBROUTINE SGTRFS( TRANS, N, NRHS, DL, D, DU, DLF, DF, DUF, DU2,
index fbd3f1f1aded654b4a9a1ce8742ebe63e77e3805..6482500c6e5065877cb4760e1677503a250f1e58 100644 (file)
@@ -1,4 +1,4 @@
-*> \brief \b SGTSV
+*> \brief <b> SGTSV computes the solution to system of linear equations A * X = B for GT matrices <b>
 *
 *  =========== DOCUMENTATION ===========
 *
 *
 *> \date November 2011
 *
-*> \ingroup realOTHERcomputational
+*> \ingroup realGTsolve
 *
 *  =====================================================================
       SUBROUTINE SGTSV( N, NRHS, DL, D, DU, B, LDB, INFO )
 *
-*  -- LAPACK computational routine (version 3.4.0) --
+*  -- LAPACK driver routine (version 3.4.0) --
 *  -- LAPACK is a software package provided by Univ. of Tennessee,    --
 *  -- Univ. of California Berkeley, Univ. of Colorado Denver and NAG Ltd..--
 *     November 2011
index f1158d8834be03b8c20eead61d7f2dec4cae0f02..839b4ee86dea2b35f7081886550c13728d24fd54 100644 (file)
@@ -1,4 +1,4 @@
-*> \brief \b SGTSVX
+*> \brief <b> SGTSVX computes the solution to system of linear equations A * X = B for GT matrices <b>
 *
 *  =========== DOCUMENTATION ===========
 *
 *
 *> \date April 2012
 *
-*> \ingroup realOTHERcomputational
+*> \ingroup realGTsolve
 *
 *  =====================================================================
       SUBROUTINE SGTSVX( FACT, TRANS, N, NRHS, DL, D, DU, DLF, DF, DUF,
      $                   DU2, IPIV, B, LDB, X, LDX, RCOND, FERR, BERR,
      $                   WORK, IWORK, INFO )
 *
-*  -- LAPACK computational routine (version 3.4.1) --
+*  -- LAPACK driver routine (version 3.4.1) --
 *  -- LAPACK is a software package provided by Univ. of Tennessee,    --
 *  -- Univ. of California Berkeley, Univ. of Colorado Denver and NAG Ltd..--
 *     April 2012
index eab02b5d5e0f182bb450b70ca87229ec05e5b4a3..5a2d817d9c8b95d9db8f79d3025fef67ccc9a8d8 100644 (file)
 *
 *> \date November 2011
 *
-*> \ingroup realOTHERcomputational
+*> \ingroup realGTcomputational
 *
 *  =====================================================================
       SUBROUTINE SGTTRF( N, DL, D, DU, DU2, IPIV, INFO )
index ddc1c5eb5061fafee09a39d9d3a59eb457b1f816..c8e831c425df9dceef9ae669fd7abdcca0c31f2a 100644 (file)
 *
 *> \date November 2011
 *
-*> \ingroup realOTHERcomputational
+*> \ingroup realGTcomputational
 *
 *  =====================================================================
       SUBROUTINE SGTTRS( TRANS, N, NRHS, DL, D, DU, DU2, IPIV, B, LDB,
index f50d2ccbbbcc52c97f9174e274f6fef288668fa0..e7fc7d9d0d21d9c08c285b9e049e865a852c96fd 100644 (file)
 *
 *> \date November 2011
 *
-*> \ingroup realOTHERauxiliary
+*> \ingroup realGTcomputational
 *
 *  =====================================================================
       SUBROUTINE SGTTS2( ITRANS, N, NRHS, DL, D, DU, DU2, IPIV, B, LDB )
 *
-*  -- LAPACK auxiliary routine (version 3.4.0) --
+*  -- LAPACK computational routine (version 3.4.0) --
 *  -- LAPACK is a software package provided by Univ. of Tennessee,    --
 *  -- Univ. of California Berkeley, Univ. of Colorado Denver and NAG Ltd..--
 *     November 2011
index ac86c8b551b98ae9c12ba6c3189b4d2d26ad69fa..f63f9644945bb84595ce5c19ee08feb6fcfb2516 100644 (file)
 *
 *> \date November 2011
 *
-*> \ingroup realOTHERcomputational
+*> \ingroup realPTcomputational
 *
 *> \par Further Details:
 *  =====================
index 0a2ff876915ff7a652b6208e7f032fc23587740c..95179d276be53e39da66f26b300e09b3a257618a 100644 (file)
 *
 *> \date November 2011
 *
-*> \ingroup realOTHERcomputational
+*> \ingroup realPTcomputational
 *
 *  =====================================================================
       SUBROUTINE SPTEQR( COMPZ, N, D, E, Z, LDZ, WORK, INFO )
index 49f1ca975cfa2e316352dca38f08586cc0faa997..91ed75663d05542481aaab97b98ff0672920b7f0 100644 (file)
 *
 *> \date November 2011
 *
-*> \ingroup realOTHERcomputational
+*> \ingroup realPTcomputational
 *
 *  =====================================================================
       SUBROUTINE SPTRFS( N, NRHS, D, E, DF, EF, B, LDB, X, LDX, FERR,
index 0921547e6b77aaba38b36e908e45f199ee30f4f8..85a940fb8df794e5edd83fa6b6f6331d30de3bec 100644 (file)
@@ -1,4 +1,4 @@
-*> \brief \b SPTSV
+*> \brief <b> SPTSV computes the solution to system of linear equations A * X = B for PT matrices</b>
 *
 *  =========== DOCUMENTATION ===========
 *
 *
 *> \date November 2011
 *
-*> \ingroup realOTHERcomputational
+*> \ingroup realPTsolve
 *
 *  =====================================================================
       SUBROUTINE SPTSV( N, NRHS, D, E, B, LDB, INFO )
 *
-*  -- LAPACK computational routine (version 3.4.0) --
+*  -- LAPACK driver routine (version 3.4.0) --
 *  -- LAPACK is a software package provided by Univ. of Tennessee,    --
 *  -- Univ. of California Berkeley, Univ. of Colorado Denver and NAG Ltd..--
 *     November 2011
index d5ab409c8b49c171f81cf102bef6d33581d86258..4e5d787da6756299af7d2b4694019b46a6a53524 100644 (file)
@@ -1,4 +1,4 @@
-*> \brief \b SPTSVX
+*> \brief <b> SPTSVX computes the solution to system of linear equations A * X = B for PT matrices</b>
 *
 *  =========== DOCUMENTATION ===========
 *
 *
 *> \date April 2012
 *
-*> \ingroup realOTHERcomputational
+*> \ingroup realPTsolve
 *
 *  =====================================================================
       SUBROUTINE SPTSVX( FACT, N, NRHS, D, E, DF, EF, B, LDB, X, LDX,
      $                   RCOND, FERR, BERR, WORK, INFO )
 *
-*  -- LAPACK computational routine (version 3.4.1) --
+*  -- LAPACK driver routine (version 3.4.1) --
 *  -- LAPACK is a software package provided by Univ. of Tennessee,    --
 *  -- Univ. of California Berkeley, Univ. of Colorado Denver and NAG Ltd..--
 *     April 2012
index f8f2f9eeb2e6ce038eba3576dea74c8132556829..3e9877882f173858f693244ef7e2fc12d590f416 100644 (file)
 *
 *> \date November 2011
 *
-*> \ingroup realOTHERcomputational
+*> \ingroup realPTcomputational
 *
 *  =====================================================================
       SUBROUTINE SPTTRS( N, NRHS, D, E, B, LDB, INFO )
index 8bc3910e316a6d61464087d7dc832332a1740b0d..d0f2363b26bbaf038c43ab62f4b40918405f88c4 100644 (file)
@@ -97,7 +97,7 @@
 *
 *> \date November 2011
 *
-*> \ingroup realOTHERcomputational
+*> \ingroup realPTcomputational
 *
 *  =====================================================================
       SUBROUTINE SPTTS2( N, NRHS, D, E, B, LDB )
index 4cef8405a59aea110cbe25b44a5606d7da3fe95c..583992eabe91274f22d54d1f8da0a5d2c0d113cb 100644 (file)
 *
 *> \date April 2012
 *
-*> \ingroup realSYcomputational
+*> \ingroup realSYdriver
 *
 *  =====================================================================
       SUBROUTINE SSYSVXX( FACT, UPLO, N, NRHS, A, LDA, AF, LDAF, IPIV,
      $                    N_ERR_BNDS, ERR_BNDS_NORM, ERR_BNDS_COMP,
      $                    NPARAMS, PARAMS, WORK, IWORK, INFO )
 *
-*  -- LAPACK computational routine (version 3.4.1) --
+*  -- LAPACK driver routine (version 3.4.1) --
 *  -- LAPACK is a software package provided by Univ. of Tennessee,    --
 *  -- Univ. of California Berkeley, Univ. of Colorado Denver and NAG Ltd..--
 *     April 2012
index d6392d3959a71472d894a1163da6975b4f379f60..419b107951a15a16c78d4fe2e88b23a1b57c3cb1 100644 (file)
@@ -35,7 +35,7 @@
 *>
 *> \verbatim
 *>
-*> SSYTRI2 computes the inverse of a REAL hermitian indefinite matrix
+*> SSYTRI2 computes the inverse of a REAL symmetric indefinite matrix
 *> A using the factorization A = U*D*U**T or A = L*D*L**T computed by
 *> SSYTRF. SSYTRI2 sets the LEADING DIMENSION of the workspace
 *> before calling SSYTRI2X that actually computes the inverse.
index 00f4308b076ef9d68c652310fe8045e669a5f783..a2099333966abcef5fea027deb19144cb3019971 100644 (file)
 *
 *> \date November 2011
 *
-*> \ingroup complex16OTHERcomputational
+*> \ingroup complex16GTcomputational
 *
 *  =====================================================================
       SUBROUTINE ZGTCON( NORM, N, DL, D, DU, DU2, IPIV, ANORM, RCOND,
index e235c25634f33cc55c555f83a4c722051f758599..cb6f4b1aa3ca6d30c8a377bf37a67e472bc44587 100644 (file)
 *
 *> \date November 2011
 *
-*> \ingroup complex16OTHERcomputational
+*> \ingroup complex16GTcomputational
 *
 *  =====================================================================
       SUBROUTINE ZGTRFS( TRANS, N, NRHS, DL, D, DU, DLF, DF, DUF, DU2,
index bbb3ad526fcf6062be120885c770a7ed145025ea..ff0bc3ced478e5662b33e0b345b959e653a5c3fa 100644 (file)
@@ -1,4 +1,4 @@
-*> \brief \b ZGTSV
+*> \brief <b> ZGTSV computes the solution to system of linear equations A * X = B for GT matrices <b>
 *
 *  =========== DOCUMENTATION ===========
 *
 *
 *> \date November 2011
 *
-*> \ingroup complex16OTHERcomputational
+*> \ingroup complex16GTsolve
 *
 *  =====================================================================
       SUBROUTINE ZGTSV( N, NRHS, DL, D, DU, B, LDB, INFO )
 *
-*  -- LAPACK computational routine (version 3.4.0) --
+*  -- LAPACK driver routine (version 3.4.0) --
 *  -- LAPACK is a software package provided by Univ. of Tennessee,    --
 *  -- Univ. of California Berkeley, Univ. of Colorado Denver and NAG Ltd..--
 *     November 2011
index dad34c0381be3977e89c0c954a3d6adc4e5a5c04..e2aa05bff2fd3021a5f74a1cf39280f9eb4309cd 100644 (file)
@@ -1,4 +1,4 @@
-*> \brief \b ZGTSVX
+*> \brief <b> ZGTSVX computes the solution to system of linear equations A * X = B for GT matrices <b>
 *
 *  =========== DOCUMENTATION ===========
 *
 *
 *> \date April 2012
 *
-*> \ingroup complex16OTHERcomputational
+*> \ingroup complex16GTsolve
 *
 *  =====================================================================
       SUBROUTINE ZGTSVX( FACT, TRANS, N, NRHS, DL, D, DU, DLF, DF, DUF,
      $                   DU2, IPIV, B, LDB, X, LDX, RCOND, FERR, BERR,
      $                   WORK, RWORK, INFO )
 *
-*  -- LAPACK computational routine (version 3.4.1) --
+*  -- LAPACK driver routine (version 3.4.1) --
 *  -- LAPACK is a software package provided by Univ. of Tennessee,    --
 *  -- Univ. of California Berkeley, Univ. of Colorado Denver and NAG Ltd..--
 *     April 2012
index ac8edea97dbfcf1a24b204a1dd780c5f1465a376..7ac23ada1866ca6b8df907fda0d0bfe94753e528 100644 (file)
 *
 *> \date November 2011
 *
-*> \ingroup complex16OTHERcomputational
+*> \ingroup complex16GTcomputational
 *
 *  =====================================================================
       SUBROUTINE ZGTTRF( N, DL, D, DU, DU2, IPIV, INFO )
index e5d50f311d67a60ae4418b0a36f8cf1097aca241..fad98268d7afb9c6fb38691129d3341f41c4b648 100644 (file)
 *
 *> \date November 2011
 *
-*> \ingroup complex16OTHERcomputational
+*> \ingroup complex16GTcomputational
 *
 *  =====================================================================
       SUBROUTINE ZGTTRS( TRANS, N, NRHS, DL, D, DU, DU2, IPIV, B, LDB,
index 4fb03b4497a8bd44ed677f6d201ddb5c16a1accf..f7718c40af023a7ba58c845379b81b8041b9f850 100644 (file)
 *
 *> \date November 2011
 *
-*> \ingroup complex16OTHERauxiliary
+*> \ingroup complex16GTcomputational
 *
 *  =====================================================================
       SUBROUTINE ZGTTS2( ITRANS, N, NRHS, DL, D, DU, DU2, IPIV, B, LDB )
 *
-*  -- LAPACK auxiliary routine (version 3.4.0) --
+*  -- LAPACK computational routine (version 3.4.0) --
 *  -- LAPACK is a software package provided by Univ. of Tennessee,    --
 *  -- Univ. of California Berkeley, Univ. of Colorado Denver and NAG Ltd..--
 *     November 2011
index 35c70e818eb3a8ce01fdd584f160344abcf785ae..e79cf752b93f95cccf29f9ee28eabae833de6706 100644 (file)
 *
 *> \date November 2011
 *
-*> \ingroup complex16OTHERcomputational
+*> \ingroup complex16PTcomputational
 *
 *> \par Further Details:
 *  =====================
index 90f21b32b941861da206b817b84c9361a30f9332..32f4095666e11485eb0225144b7544d227bfe473 100644 (file)
 *
 *> \date November 2011
 *
-*> \ingroup complex16OTHERcomputational
+*> \ingroup complex16PTcomputational
 *
 *  =====================================================================
       SUBROUTINE ZPTEQR( COMPZ, N, D, E, Z, LDZ, WORK, INFO )
index 50770cac91d4affd92ea9935a59c9cc811d7a096..1d10f137a77611e558e8f3f1ed6323e41fff241f 100644 (file)
 *
 *> \date November 2011
 *
-*> \ingroup complex16OTHERcomputational
+*> \ingroup complex16PTcomputational
 *
 *  =====================================================================
       SUBROUTINE ZPTRFS( UPLO, N, NRHS, D, E, DF, EF, B, LDB, X, LDX,
index 54623e21668a1d70d930c6366ad248a3b2943634..6ffe45b06922d5a300c093f6a3a466fea43ac7cc 100644 (file)
@@ -1,4 +1,4 @@
-*> \brief \b ZPTSV
+*> \brief <b> ZPTSV computes the solution to system of linear equations A * X = B for PT matrices</b>
 *
 *  =========== DOCUMENTATION ===========
 *
 *
 *> \date November 2011
 *
-*> \ingroup complex16OTHERcomputational
+*> \ingroup complex16PTsolve
 *
 *  =====================================================================
       SUBROUTINE ZPTSV( N, NRHS, D, E, B, LDB, INFO )
 *
-*  -- LAPACK computational routine (version 3.4.0) --
+*  -- LAPACK driver routine (version 3.4.0) --
 *  -- LAPACK is a software package provided by Univ. of Tennessee,    --
 *  -- Univ. of California Berkeley, Univ. of Colorado Denver and NAG Ltd..--
 *     November 2011
index 3f376fa5cd44a5cdda905447cb99608167af046e..7c9ee91a7d41feab784260ae8d1f55de571c8d23 100644 (file)
@@ -1,4 +1,4 @@
-*> \brief \b ZPTSVX
+*> \brief <b> ZPTSVX computes the solution to system of linear equations A * X = B for PT matrices</b>
 *
 *  =========== DOCUMENTATION ===========
 *
 *
 *> \date April 2012
 *
-*> \ingroup complex16OTHERcomputational
+*> \ingroup complex16PTsolve
 *
 *  =====================================================================
       SUBROUTINE ZPTSVX( FACT, N, NRHS, D, E, DF, EF, B, LDB, X, LDX,
      $                   RCOND, FERR, BERR, WORK, RWORK, INFO )
 *
-*  -- LAPACK computational routine (version 3.4.1) --
+*  -- LAPACK driver routine (version 3.4.1) --
 *  -- LAPACK is a software package provided by Univ. of Tennessee,    --
 *  -- Univ. of California Berkeley, Univ. of Colorado Denver and NAG Ltd..--
 *     April 2012
index 266c874b7cc777f546d6d98473c02e47aa7935b4..e912e8985720682282c2daba2a19ab7f3299f4b3 100644 (file)
@@ -87,7 +87,7 @@
 *
 *> \date November 2011
 *
-*> \ingroup complex16OTHERcomputational
+*> \ingroup complex16PTcomputational
 *
 *  =====================================================================
       SUBROUTINE ZPTTRF( N, D, E, INFO )
index 5d060bd9db92d7048d49fbe8f388cbd64f7c81a7..718ddd16d2c3e1aa369ed43b4cbb6ead4b4b596d 100644 (file)
 *
 *> \date November 2011
 *
-*> \ingroup complex16OTHERcomputational
+*> \ingroup complex16PTcomputational
 *
 *  =====================================================================
       SUBROUTINE ZPTTRS( UPLO, N, NRHS, D, E, B, LDB, INFO )
index 4ab716ec28c7012fa47514ff077318a05f5e5502..6e1579d1060462e469813b8c940fb385fc54c4d2 100644 (file)
 *
 *> \date November 2011
 *
-*> \ingroup complex16OTHERcomputational
+*> \ingroup complex16PTcomputational
 *
 *  =====================================================================
       SUBROUTINE ZPTTS2( IUPLO, N, NRHS, D, E, B, LDB )
index edaa7084e968b17a97b4f33918b78b29e0346566..b6d7c617d4b127c814e175d6ddcc9900ab79043c 100644 (file)
@@ -35,7 +35,7 @@
 *>
 *> \verbatim
 *>
-*> ZSYTRI2 computes the inverse of a COMPLEX*16 hermitian indefinite matrix
+*> ZSYTRI2 computes the inverse of a COMPLEX*16 symmetric indefinite matrix
 *> A using the factorization A = U*D*U**T or A = L*D*L**T computed by
 *> ZSYTRF. ZSYTRI2 sets the LEADING DIMENSION of the workspace
 *> before calling ZSYTRI2X that actually computes the inverse.