Browse Source

Fix typos and errors in comments (Reference-LAPACK 809)

tags/v0.3.27
Martin Kroeker GitHub 1 year ago
parent
commit
e4b695d798
No known key found for this signature in database GPG Key ID: B5690EEEBB952194
8 changed files with 8 additions and 8 deletions
  1. +1
    -1
      lapack-netlib/SRC/cgbsvx.f
  2. +1
    -1
      lapack-netlib/SRC/cgesvx.f
  3. +1
    -1
      lapack-netlib/SRC/dgbsvx.f
  4. +1
    -1
      lapack-netlib/SRC/dgesvx.f
  5. +1
    -1
      lapack-netlib/SRC/sgbsvx.f
  6. +1
    -1
      lapack-netlib/SRC/sgesvx.f
  7. +1
    -1
      lapack-netlib/SRC/zgbsvx.f
  8. +1
    -1
      lapack-netlib/SRC/zgesvx.f

+ 1
- 1
lapack-netlib/SRC/cgbsvx.f View File

@@ -322,7 +322,7 @@
*>
*> \param[out] RWORK
*> \verbatim
*> RWORK is REAL array, dimension (N)
*> RWORK is REAL array, dimension (MAX(1,N))
*> On exit, RWORK(1) contains the reciprocal pivot growth
*> factor norm(A)/norm(U). The "max absolute element" norm is
*> used. If RWORK(1) is much less than 1, then the stability


+ 1
- 1
lapack-netlib/SRC/cgesvx.f View File

@@ -302,7 +302,7 @@
*>
*> \param[out] RWORK
*> \verbatim
*> RWORK is REAL array, dimension (2*N)
*> RWORK is REAL array, dimension (MAX(1,2*N))
*> On exit, RWORK(1) contains the reciprocal pivot growth
*> factor norm(A)/norm(U). The "max absolute element" norm is
*> used. If RWORK(1) is much less than 1, then the stability


+ 1
- 1
lapack-netlib/SRC/dgbsvx.f View File

@@ -316,7 +316,7 @@
*>
*> \param[out] WORK
*> \verbatim
*> WORK is DOUBLE PRECISION array, dimension (3*N)
*> WORK is DOUBLE PRECISION array, dimension (MAX(1,3*N))
*> On exit, WORK(1) contains the reciprocal pivot growth
*> factor norm(A)/norm(U). The "max absolute element" norm is
*> used. If WORK(1) is much less than 1, then the stability


+ 1
- 1
lapack-netlib/SRC/dgesvx.f View File

@@ -296,7 +296,7 @@
*>
*> \param[out] WORK
*> \verbatim
*> WORK is DOUBLE PRECISION array, dimension (4*N)
*> WORK is DOUBLE PRECISION array, dimension (MAX(1,4*N))
*> On exit, WORK(1) contains the reciprocal pivot growth
*> factor norm(A)/norm(U). The "max absolute element" norm is
*> used. If WORK(1) is much less than 1, then the stability


+ 1
- 1
lapack-netlib/SRC/sgbsvx.f View File

@@ -316,7 +316,7 @@
*>
*> \param[out] WORK
*> \verbatim
*> WORK is REAL array, dimension (3*N)
*> WORK is REAL array, dimension (MAX(1,3*N))
*> On exit, WORK(1) contains the reciprocal pivot growth
*> factor norm(A)/norm(U). The "max absolute element" norm is
*> used. If WORK(1) is much less than 1, then the stability


+ 1
- 1
lapack-netlib/SRC/sgesvx.f View File

@@ -296,7 +296,7 @@
*>
*> \param[out] WORK
*> \verbatim
*> WORK is REAL array, dimension (4*N)
*> WORK is REAL array, dimension (MAX(1,4*N))
*> On exit, WORK(1) contains the reciprocal pivot growth
*> factor norm(A)/norm(U). The "max absolute element" norm is
*> used. If WORK(1) is much less than 1, then the stability


+ 1
- 1
lapack-netlib/SRC/zgbsvx.f View File

@@ -322,7 +322,7 @@
*>
*> \param[out] RWORK
*> \verbatim
*> RWORK is DOUBLE PRECISION array, dimension (N)
*> RWORK is DOUBLE PRECISION array, dimension (MAX(1,N))
*> On exit, RWORK(1) contains the reciprocal pivot growth
*> factor norm(A)/norm(U). The "max absolute element" norm is
*> used. If RWORK(1) is much less than 1, then the stability


+ 1
- 1
lapack-netlib/SRC/zgesvx.f View File

@@ -302,7 +302,7 @@
*>
*> \param[out] RWORK
*> \verbatim
*> RWORK is DOUBLE PRECISION array, dimension (2*N)
*> RWORK is DOUBLE PRECISION array, dimension (MAX(1,2*N))
*> On exit, RWORK(1) contains the reciprocal pivot growth
*> factor norm(A)/norm(U). The "max absolute element" norm is
*> used. If RWORK(1) is much less than 1, then the stability


Loading…
Cancel
Save