clags2.f.html
来自「famous linear algebra library (LAPACK) p」· HTML 代码 · 共 327 行 · 第 1/2 页
HTML
327 行
<span class="comment">*</span><span class="comment">
</span><span class="comment">*</span><span class="comment"> zero (1,2) elements of U'*A and V'*B
</span><span class="comment">*</span><span class="comment">
</span> IF( ( ABS( UA11R )+ABS1( UA12 ) ).EQ.ZERO ) THEN
CALL <a name="CLARTG.152"></a><a href="clartg.f.html#CLARTG.1">CLARTG</a>( -CMPLX( VB11R ), CONJG( VB12 ), CSQ, SNQ,
$ R )
ELSE IF( ( ABS( VB11R )+ABS1( VB12 ) ).EQ.ZERO ) THEN
CALL <a name="CLARTG.155"></a><a href="clartg.f.html#CLARTG.1">CLARTG</a>( -CMPLX( UA11R ), CONJG( UA12 ), CSQ, SNQ,
$ R )
ELSE IF( AUA12 / ( ABS( UA11R )+ABS1( UA12 ) ).LE.AVB12 /
$ ( ABS( VB11R )+ABS1( VB12 ) ) ) THEN
CALL <a name="CLARTG.159"></a><a href="clartg.f.html#CLARTG.1">CLARTG</a>( -CMPLX( UA11R ), CONJG( UA12 ), CSQ, SNQ,
$ R )
ELSE
CALL <a name="CLARTG.162"></a><a href="clartg.f.html#CLARTG.1">CLARTG</a>( -CMPLX( VB11R ), CONJG( VB12 ), CSQ, SNQ,
$ R )
END IF
<span class="comment">*</span><span class="comment">
</span> CSU = CSL
SNU = -D1*SNL
CSV = CSR
SNV = -D1*SNR
<span class="comment">*</span><span class="comment">
</span> ELSE
<span class="comment">*</span><span class="comment">
</span><span class="comment">*</span><span class="comment"> Compute the (2,1) and (2,2) elements of U'*A and V'*B,
</span><span class="comment">*</span><span class="comment"> and (2,2) element of |U|'*|A| and |V|'*|B|.
</span><span class="comment">*</span><span class="comment">
</span> UA21 = -CONJG( D1 )*SNL*A1
UA22 = -CONJG( D1 )*SNL*A2 + CSL*A3
<span class="comment">*</span><span class="comment">
</span> VB21 = -CONJG( D1 )*SNR*B1
VB22 = -CONJG( D1 )*SNR*B2 + CSR*B3
<span class="comment">*</span><span class="comment">
</span> AUA22 = ABS( SNL )*ABS1( A2 ) + ABS( CSL )*ABS( A3 )
AVB22 = ABS( SNR )*ABS1( B2 ) + ABS( CSR )*ABS( B3 )
<span class="comment">*</span><span class="comment">
</span><span class="comment">*</span><span class="comment"> zero (2,2) elements of U'*A and V'*B, and then swap.
</span><span class="comment">*</span><span class="comment">
</span> IF( ( ABS1( UA21 )+ABS1( UA22 ) ).EQ.ZERO ) THEN
CALL <a name="CLARTG.188"></a><a href="clartg.f.html#CLARTG.1">CLARTG</a>( -CONJG( VB21 ), CONJG( VB22 ), CSQ, SNQ, R )
ELSE IF( ( ABS1( VB21 )+ABS( VB22 ) ).EQ.ZERO ) THEN
CALL <a name="CLARTG.190"></a><a href="clartg.f.html#CLARTG.1">CLARTG</a>( -CONJG( UA21 ), CONJG( UA22 ), CSQ, SNQ, R )
ELSE IF( AUA22 / ( ABS1( UA21 )+ABS1( UA22 ) ).LE.AVB22 /
$ ( ABS1( VB21 )+ABS1( VB22 ) ) ) THEN
CALL <a name="CLARTG.193"></a><a href="clartg.f.html#CLARTG.1">CLARTG</a>( -CONJG( UA21 ), CONJG( UA22 ), CSQ, SNQ, R )
ELSE
CALL <a name="CLARTG.195"></a><a href="clartg.f.html#CLARTG.1">CLARTG</a>( -CONJG( VB21 ), CONJG( VB22 ), CSQ, SNQ, R )
END IF
<span class="comment">*</span><span class="comment">
</span> CSU = SNL
SNU = D1*CSL
CSV = SNR
SNV = D1*CSR
<span class="comment">*</span><span class="comment">
</span> END IF
<span class="comment">*</span><span class="comment">
</span> ELSE
<span class="comment">*</span><span class="comment">
</span><span class="comment">*</span><span class="comment"> Input matrices A and B are lower triangular matrices
</span><span class="comment">*</span><span class="comment">
</span><span class="comment">*</span><span class="comment"> Form matrix C = A*adj(B) = ( a 0 )
</span><span class="comment">*</span><span class="comment"> ( c d )
</span><span class="comment">*</span><span class="comment">
</span> A = A1*B3
D = A3*B1
C = A2*B3 - A3*B2
FC = ABS( C )
<span class="comment">*</span><span class="comment">
</span><span class="comment">*</span><span class="comment"> Transform complex 2-by-2 matrix C to real matrix by unitary
</span><span class="comment">*</span><span class="comment"> diagonal matrix diag(d1,1).
</span><span class="comment">*</span><span class="comment">
</span> D1 = ONE
IF( FC.NE.ZERO )
$ D1 = C / FC
<span class="comment">*</span><span class="comment">
</span><span class="comment">*</span><span class="comment"> The SVD of real 2 by 2 triangular C
</span><span class="comment">*</span><span class="comment">
</span><span class="comment">*</span><span class="comment"> ( CSL -SNL )*( A 0 )*( CSR SNR ) = ( R 0 )
</span><span class="comment">*</span><span class="comment"> ( SNL CSL ) ( C D ) ( -SNR CSR ) ( 0 T )
</span><span class="comment">*</span><span class="comment">
</span> CALL <a name="SLASV2.229"></a><a href="slasv2.f.html#SLASV2.1">SLASV2</a>( A, FC, D, S1, S2, SNR, CSR, SNL, CSL )
<span class="comment">*</span><span class="comment">
</span> IF( ABS( CSR ).GE.ABS( SNR ) .OR. ABS( CSL ).GE.ABS( SNL ) )
$ THEN
<span class="comment">*</span><span class="comment">
</span><span class="comment">*</span><span class="comment"> Compute the (2,1) and (2,2) elements of U'*A and V'*B,
</span><span class="comment">*</span><span class="comment"> and (2,1) element of |U|'*|A| and |V|'*|B|.
</span><span class="comment">*</span><span class="comment">
</span> UA21 = -D1*SNR*A1 + CSR*A2
UA22R = CSR*A3
<span class="comment">*</span><span class="comment">
</span> VB21 = -D1*SNL*B1 + CSL*B2
VB22R = CSL*B3
<span class="comment">*</span><span class="comment">
</span> AUA21 = ABS( SNR )*ABS( A1 ) + ABS( CSR )*ABS1( A2 )
AVB21 = ABS( SNL )*ABS( B1 ) + ABS( CSL )*ABS1( B2 )
<span class="comment">*</span><span class="comment">
</span><span class="comment">*</span><span class="comment"> zero (2,1) elements of U'*A and V'*B.
</span><span class="comment">*</span><span class="comment">
</span> IF( ( ABS1( UA21 )+ABS( UA22R ) ).EQ.ZERO ) THEN
CALL <a name="CLARTG.249"></a><a href="clartg.f.html#CLARTG.1">CLARTG</a>( CMPLX( VB22R ), VB21, CSQ, SNQ, R )
ELSE IF( ( ABS1( VB21 )+ABS( VB22R ) ).EQ.ZERO ) THEN
CALL <a name="CLARTG.251"></a><a href="clartg.f.html#CLARTG.1">CLARTG</a>( CMPLX( UA22R ), UA21, CSQ, SNQ, R )
ELSE IF( AUA21 / ( ABS1( UA21 )+ABS( UA22R ) ).LE.AVB21 /
$ ( ABS1( VB21 )+ABS( VB22R ) ) ) THEN
CALL <a name="CLARTG.254"></a><a href="clartg.f.html#CLARTG.1">CLARTG</a>( CMPLX( UA22R ), UA21, CSQ, SNQ, R )
ELSE
CALL <a name="CLARTG.256"></a><a href="clartg.f.html#CLARTG.1">CLARTG</a>( CMPLX( VB22R ), VB21, CSQ, SNQ, R )
END IF
<span class="comment">*</span><span class="comment">
</span> CSU = CSR
SNU = -CONJG( D1 )*SNR
CSV = CSL
SNV = -CONJG( D1 )*SNL
<span class="comment">*</span><span class="comment">
</span> ELSE
<span class="comment">*</span><span class="comment">
</span><span class="comment">*</span><span class="comment"> Compute the (1,1) and (1,2) elements of U'*A and V'*B,
</span><span class="comment">*</span><span class="comment"> and (1,1) element of |U|'*|A| and |V|'*|B|.
</span><span class="comment">*</span><span class="comment">
</span> UA11 = CSR*A1 + CONJG( D1 )*SNR*A2
UA12 = CONJG( D1 )*SNR*A3
<span class="comment">*</span><span class="comment">
</span> VB11 = CSL*B1 + CONJG( D1 )*SNL*B2
VB12 = CONJG( D1 )*SNL*B3
<span class="comment">*</span><span class="comment">
</span> AUA11 = ABS( CSR )*ABS( A1 ) + ABS( SNR )*ABS1( A2 )
AVB11 = ABS( CSL )*ABS( B1 ) + ABS( SNL )*ABS1( B2 )
<span class="comment">*</span><span class="comment">
</span><span class="comment">*</span><span class="comment"> zero (1,1) elements of U'*A and V'*B, and then swap.
</span><span class="comment">*</span><span class="comment">
</span> IF( ( ABS1( UA11 )+ABS1( UA12 ) ).EQ.ZERO ) THEN
CALL <a name="CLARTG.281"></a><a href="clartg.f.html#CLARTG.1">CLARTG</a>( VB12, VB11, CSQ, SNQ, R )
ELSE IF( ( ABS1( VB11 )+ABS1( VB12 ) ).EQ.ZERO ) THEN
CALL <a name="CLARTG.283"></a><a href="clartg.f.html#CLARTG.1">CLARTG</a>( UA12, UA11, CSQ, SNQ, R )
ELSE IF( AUA11 / ( ABS1( UA11 )+ABS1( UA12 ) ).LE.AVB11 /
$ ( ABS1( VB11 )+ABS1( VB12 ) ) ) THEN
CALL <a name="CLARTG.286"></a><a href="clartg.f.html#CLARTG.1">CLARTG</a>( UA12, UA11, CSQ, SNQ, R )
ELSE
CALL <a name="CLARTG.288"></a><a href="clartg.f.html#CLARTG.1">CLARTG</a>( VB12, VB11, CSQ, SNQ, R )
END IF
<span class="comment">*</span><span class="comment">
</span> CSU = SNR
SNU = CONJG( D1 )*CSR
CSV = SNL
SNV = CONJG( D1 )*CSL
<span class="comment">*</span><span class="comment">
</span> END IF
<span class="comment">*</span><span class="comment">
</span> END IF
<span class="comment">*</span><span class="comment">
</span> RETURN
<span class="comment">*</span><span class="comment">
</span><span class="comment">*</span><span class="comment"> End of <a name="CLAGS2.302"></a><a href="clags2.f.html#CLAGS2.1">CLAGS2</a>
</span><span class="comment">*</span><span class="comment">
</span> END
</pre>
</body>
</html>
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?