cstedc.f.html
来自「famous linear algebra library (LAPACK) p」· HTML 代码 · 共 428 行 · 第 1/3 页
HTML
428 行
</span><span class="comment">*</span><span class="comment"> related to LWORK or LRWORK or LIWORK is issued by <a name="XERBLA.125"></a><a href="xerbla.f.html#XERBLA.1">XERBLA</a>.
</span><span class="comment">*</span><span class="comment">
</span><span class="comment">*</span><span class="comment"> INFO (output) INTEGER
</span><span class="comment">*</span><span class="comment"> = 0: successful exit.
</span><span class="comment">*</span><span class="comment"> < 0: if INFO = -i, the i-th argument had an illegal value.
</span><span class="comment">*</span><span class="comment"> > 0: The algorithm failed to compute an eigenvalue while
</span><span class="comment">*</span><span class="comment"> working on the submatrix lying in rows and columns
</span><span class="comment">*</span><span class="comment"> INFO/(N+1) through mod(INFO,N+1).
</span><span class="comment">*</span><span class="comment">
</span><span class="comment">*</span><span class="comment"> Further Details
</span><span class="comment">*</span><span class="comment"> ===============
</span><span class="comment">*</span><span class="comment">
</span><span class="comment">*</span><span class="comment"> Based on contributions by
</span><span class="comment">*</span><span class="comment"> Jeff Rutter, Computer Science Division, University of California
</span><span class="comment">*</span><span class="comment"> at Berkeley, USA
</span><span class="comment">*</span><span class="comment">
</span><span class="comment">*</span><span class="comment"> =====================================================================
</span><span class="comment">*</span><span class="comment">
</span><span class="comment">*</span><span class="comment"> .. Parameters ..
</span> REAL ZERO, ONE, TWO
PARAMETER ( ZERO = 0.0E0, ONE = 1.0E0, TWO = 2.0E0 )
<span class="comment">*</span><span class="comment"> ..
</span><span class="comment">*</span><span class="comment"> .. Local Scalars ..
</span> LOGICAL LQUERY
INTEGER FINISH, I, ICOMPZ, II, J, K, LGN, LIWMIN, LL,
$ LRWMIN, LWMIN, M, SMLSIZ, START
REAL EPS, ORGNRM, P, TINY
<span class="comment">*</span><span class="comment"> ..
</span><span class="comment">*</span><span class="comment"> .. External Functions ..
</span> LOGICAL <a name="LSAME.154"></a><a href="lsame.f.html#LSAME.1">LSAME</a>
INTEGER <a name="ILAENV.155"></a><a href="hfy-index.html#ILAENV">ILAENV</a>
REAL <a name="SLAMCH.156"></a><a href="slamch.f.html#SLAMCH.1">SLAMCH</a>, <a name="SLANST.156"></a><a href="slanst.f.html#SLANST.1">SLANST</a>
EXTERNAL <a name="ILAENV.157"></a><a href="hfy-index.html#ILAENV">ILAENV</a>, <a name="LSAME.157"></a><a href="lsame.f.html#LSAME.1">LSAME</a>, <a name="SLAMCH.157"></a><a href="slamch.f.html#SLAMCH.1">SLAMCH</a>, <a name="SLANST.157"></a><a href="slanst.f.html#SLANST.1">SLANST</a>
<span class="comment">*</span><span class="comment"> ..
</span><span class="comment">*</span><span class="comment"> .. External Subroutines ..
</span> EXTERNAL <a name="XERBLA.160"></a><a href="xerbla.f.html#XERBLA.1">XERBLA</a>, <a name="CLACPY.160"></a><a href="clacpy.f.html#CLACPY.1">CLACPY</a>, <a name="CLACRM.160"></a><a href="clacrm.f.html#CLACRM.1">CLACRM</a>, <a name="CLAED0.160"></a><a href="claed0.f.html#CLAED0.1">CLAED0</a>, <a name="CSTEQR.160"></a><a href="csteqr.f.html#CSTEQR.1">CSTEQR</a>, CSWAP,
$ <a name="SLASCL.161"></a><a href="slascl.f.html#SLASCL.1">SLASCL</a>, <a name="SLASET.161"></a><a href="slaset.f.html#SLASET.1">SLASET</a>, <a name="SSTEDC.161"></a><a href="sstedc.f.html#SSTEDC.1">SSTEDC</a>, <a name="SSTEQR.161"></a><a href="ssteqr.f.html#SSTEQR.1">SSTEQR</a>, <a name="SSTERF.161"></a><a href="ssterf.f.html#SSTERF.1">SSTERF</a>
<span class="comment">*</span><span class="comment"> ..
</span><span class="comment">*</span><span class="comment"> .. Intrinsic Functions ..
</span> INTRINSIC ABS, INT, LOG, MAX, MOD, REAL, SQRT
<span class="comment">*</span><span class="comment"> ..
</span><span class="comment">*</span><span class="comment"> .. Executable Statements ..
</span><span class="comment">*</span><span class="comment">
</span><span class="comment">*</span><span class="comment"> Test the input parameters.
</span><span class="comment">*</span><span class="comment">
</span> INFO = 0
LQUERY = ( LWORK.EQ.-1 .OR. LRWORK.EQ.-1 .OR. LIWORK.EQ.-1 )
<span class="comment">*</span><span class="comment">
</span> IF( <a name="LSAME.173"></a><a href="lsame.f.html#LSAME.1">LSAME</a>( COMPZ, <span class="string">'N'</span> ) ) THEN
ICOMPZ = 0
ELSE IF( <a name="LSAME.175"></a><a href="lsame.f.html#LSAME.1">LSAME</a>( COMPZ, <span class="string">'V'</span> ) ) THEN
ICOMPZ = 1
ELSE IF( <a name="LSAME.177"></a><a href="lsame.f.html#LSAME.1">LSAME</a>( COMPZ, <span class="string">'I'</span> ) ) THEN
ICOMPZ = 2
ELSE
ICOMPZ = -1
END IF
IF( ICOMPZ.LT.0 ) THEN
INFO = -1
ELSE IF( N.LT.0 ) THEN
INFO = -2
ELSE IF( ( LDZ.LT.1 ) .OR.
$ ( ICOMPZ.GT.0 .AND. LDZ.LT.MAX( 1, N ) ) ) THEN
INFO = -6
END IF
<span class="comment">*</span><span class="comment">
</span> IF( INFO.EQ.0 ) THEN
<span class="comment">*</span><span class="comment">
</span><span class="comment">*</span><span class="comment"> Compute the workspace requirements
</span><span class="comment">*</span><span class="comment">
</span> SMLSIZ = <a name="ILAENV.195"></a><a href="hfy-index.html#ILAENV">ILAENV</a>( 9, <span class="string">'<a name="CSTEDC.195"></a><a href="cstedc.f.html#CSTEDC.1">CSTEDC</a>'</span>, <span class="string">' '</span>, 0, 0, 0, 0 )
IF( N.LE.1 .OR. ICOMPZ.EQ.0 ) THEN
LWMIN = 1
LIWMIN = 1
LRWMIN = 1
ELSE IF( N.LE.SMLSIZ ) THEN
LWMIN = 1
LIWMIN = 1
LRWMIN = 2*( N - 1 )
ELSE IF( ICOMPZ.EQ.1 ) THEN
LGN = INT( LOG( REAL( N ) ) / LOG( TWO ) )
IF( 2**LGN.LT.N )
$ LGN = LGN + 1
IF( 2**LGN.LT.N )
$ LGN = LGN + 1
LWMIN = N*N
LRWMIN = 1 + 3*N + 2*N*LGN + 3*N**2
LIWMIN = 6 + 6*N + 5*N*LGN
ELSE IF( ICOMPZ.EQ.2 ) THEN
LWMIN = 1
LRWMIN = 1 + 4*N + 2*N**2
LIWMIN = 3 + 5*N
END IF
WORK( 1 ) = LWMIN
RWORK( 1 ) = LRWMIN
IWORK( 1 ) = LIWMIN
<span class="comment">*</span><span class="comment">
</span> IF( LWORK.LT.LWMIN .AND. .NOT.LQUERY ) THEN
INFO = -8
ELSE IF( LRWORK.LT.LRWMIN .AND. .NOT.LQUERY ) THEN
INFO = -10
ELSE IF( LIWORK.LT.LIWMIN .AND. .NOT.LQUERY ) THEN
INFO = -12
END IF
END IF
<span class="comment">*</span><span class="comment">
</span> IF( INFO.NE.0 ) THEN
CALL <a name="XERBLA.232"></a><a href="xerbla.f.html#XERBLA.1">XERBLA</a>( <span class="string">'<a name="CSTEDC.232"></a><a href="cstedc.f.html#CSTEDC.1">CSTEDC</a>'</span>, -INFO )
RETURN
ELSE IF( LQUERY ) THEN
RETURN
END IF
<span class="comment">*</span><span class="comment">
</span><span class="comment">*</span><span class="comment"> Quick return if possible
</span><span class="comment">*</span><span class="comment">
</span> IF( N.EQ.0 )
$ RETURN
IF( N.EQ.1 ) THEN
IF( ICOMPZ.NE.0 )
$ Z( 1, 1 ) = ONE
RETURN
END IF
<span class="comment">*</span><span class="comment">
</span><span class="comment">*</span><span class="comment"> If the following conditional clause is removed, then the routine
</span><span class="comment">*</span><span class="comment"> will use the Divide and Conquer routine to compute only the
</span><span class="comment">*</span><span class="comment"> eigenvalues, which requires (3N + 3N**2) real workspace and
</span><span class="comment">*</span><span class="comment"> (2 + 5N + 2N lg(N)) integer workspace.
</span><span class="comment">*</span><span class="comment"> Since on many architectures <a name="SSTERF.252"></a><a href="ssterf.f.html#SSTERF.1">SSTERF</a> is much faster than any other
</span><span class="comment">*</span><span class="comment"> algorithm for finding eigenvalues only, it is used here
</span><span class="comment">*</span><span class="comment"> as the default. If the conditional clause is removed, then
</span><span class="comment">*</span><span class="comment"> information on the size of workspace needs to be changed.
</span><span class="comment">*</span><span class="comment">
</span><span class="comment">*</span><span class="comment"> If COMPZ = 'N', use <a name="SSTERF.257"></a><a href="ssterf.f.html#SSTERF.1">SSTERF</a> to compute the eigenvalues.
</span><span class="comment">*</span><span class="comment">
</span> IF( ICOMPZ.EQ.0 ) THEN
CALL <a name="SSTERF.260"></a><a href="ssterf.f.html#SSTERF.1">SSTERF</a>( N, D, E, INFO )
GO TO 70
END IF
<span class="comment">*</span><span class="comment">
</span><span class="comment">*</span><span class="comment"> If N is smaller than the minimum divide size (SMLSIZ+1), then
</span><span class="comment">*</span><span class="comment"> solve the problem with another solver.
</span><span class="comment">*</span><span class="comment">
</span> IF( N.LE.SMLSIZ ) THEN
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?