chbmv.f.html
来自「famous linear algebra library (LAPACK) p」· HTML 代码 · 共 332 行 · 第 1/2 页
HTML
332 行
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
<html>
<head>
<title>chbmv.f</title>
<meta name="generator" content="emacs 21.3.1; htmlfontify 0.20">
<style type="text/css"><!--
body { background: rgb(255, 255, 255); color: rgb(0, 0, 0); font-style: normal; font-weight: 500; font-stretch: normal; font-family: adobe-courier; font-size: 11pt; text-decoration: none; }
span.default { background: rgb(255, 255, 255); color: rgb(0, 0, 0); font-style: normal; font-weight: 500; font-stretch: normal; font-family: adobe-courier; font-size: 11pt; text-decoration: none; }
span.default a { background: rgb(255, 255, 255); color: rgb(0, 0, 0); font-style: normal; font-weight: 500; font-stretch: normal; font-family: adobe-courier; font-size: 11pt; text-decoration: underline; }
span.string { color: rgb(188, 143, 143); background: rgb(255, 255, 255); font-style: normal; font-weight: 500; font-stretch: normal; font-family: adobe-courier; font-size: 11pt; text-decoration: none; }
span.string a { color: rgb(188, 143, 143); background: rgb(255, 255, 255); font-style: normal; font-weight: 500; font-stretch: normal; font-family: adobe-courier; font-size: 11pt; text-decoration: underline; }
span.comment { color: rgb(178, 34, 34); background: rgb(255, 255, 255); font-style: normal; font-weight: 500; font-stretch: normal; font-family: adobe-courier; font-size: 11pt; text-decoration: none; }
span.comment a { color: rgb(178, 34, 34); background: rgb(255, 255, 255); font-style: normal; font-weight: 500; font-stretch: normal; font-family: adobe-courier; font-size: 11pt; text-decoration: underline; }
--></style>
</head>
<body>
<pre>
SUBROUTINE <a name="CHBMV.1"></a><a href="chbmv.f.html#CHBMV.1">CHBMV</a>(UPLO,N,K,ALPHA,A,LDA,X,INCX,BETA,Y,INCY)
<span class="comment">*</span><span class="comment"> .. Scalar Arguments ..
</span> COMPLEX ALPHA,BETA
INTEGER INCX,INCY,K,LDA,N
CHARACTER UPLO
<span class="comment">*</span><span class="comment"> ..
</span><span class="comment">*</span><span class="comment"> .. Array Arguments ..
</span> COMPLEX A(LDA,*),X(*),Y(*)
<span class="comment">*</span><span class="comment"> ..
</span><span class="comment">*</span><span class="comment">
</span><span class="comment">*</span><span class="comment"> Purpose
</span><span class="comment">*</span><span class="comment"> =======
</span><span class="comment">*</span><span class="comment">
</span><span class="comment">*</span><span class="comment"> <a name="CHBMV.14"></a><a href="chbmv.f.html#CHBMV.1">CHBMV</a> performs the matrix-vector operation
</span><span class="comment">*</span><span class="comment">
</span><span class="comment">*</span><span class="comment"> y := alpha*A*x + beta*y,
</span><span class="comment">*</span><span class="comment">
</span><span class="comment">*</span><span class="comment"> where alpha and beta are scalars, x and y are n element vectors and
</span><span class="comment">*</span><span class="comment"> A is an n by n hermitian band matrix, with k super-diagonals.
</span><span class="comment">*</span><span class="comment">
</span><span class="comment">*</span><span class="comment"> Arguments
</span><span class="comment">*</span><span class="comment"> ==========
</span><span class="comment">*</span><span class="comment">
</span><span class="comment">*</span><span class="comment"> UPLO - CHARACTER*1.
</span><span class="comment">*</span><span class="comment"> On entry, UPLO specifies whether the upper or lower
</span><span class="comment">*</span><span class="comment"> triangular part of the band matrix A is being supplied as
</span><span class="comment">*</span><span class="comment"> follows:
</span><span class="comment">*</span><span class="comment">
</span><span class="comment">*</span><span class="comment"> UPLO = 'U' or 'u' The upper triangular part of A is
</span><span class="comment">*</span><span class="comment"> being supplied.
</span><span class="comment">*</span><span class="comment">
</span><span class="comment">*</span><span class="comment"> UPLO = 'L' or 'l' The lower triangular part of A is
</span><span class="comment">*</span><span class="comment"> being supplied.
</span><span class="comment">*</span><span class="comment">
</span><span class="comment">*</span><span class="comment"> Unchanged on exit.
</span><span class="comment">*</span><span class="comment">
</span><span class="comment">*</span><span class="comment"> N - INTEGER.
</span><span class="comment">*</span><span class="comment"> On entry, N specifies the order of the matrix A.
</span><span class="comment">*</span><span class="comment"> N must be at least zero.
</span><span class="comment">*</span><span class="comment"> Unchanged on exit.
</span><span class="comment">*</span><span class="comment">
</span><span class="comment">*</span><span class="comment"> K - INTEGER.
</span><span class="comment">*</span><span class="comment"> On entry, K specifies the number of super-diagonals of the
</span><span class="comment">*</span><span class="comment"> matrix A. K must satisfy 0 .le. K.
</span><span class="comment">*</span><span class="comment"> Unchanged on exit.
</span><span class="comment">*</span><span class="comment">
</span><span class="comment">*</span><span class="comment"> ALPHA - COMPLEX .
</span><span class="comment">*</span><span class="comment"> On entry, ALPHA specifies the scalar alpha.
</span><span class="comment">*</span><span class="comment"> Unchanged on exit.
</span><span class="comment">*</span><span class="comment">
</span><span class="comment">*</span><span class="comment"> A - COMPLEX array of DIMENSION ( LDA, n ).
</span><span class="comment">*</span><span class="comment"> Before entry with UPLO = 'U' or 'u', the leading ( k + 1 )
</span><span class="comment">*</span><span class="comment"> by n part of the array A must contain the upper triangular
</span><span class="comment">*</span><span class="comment"> band part of the hermitian matrix, supplied column by
</span><span class="comment">*</span><span class="comment"> column, with the leading diagonal of the matrix in row
</span><span class="comment">*</span><span class="comment"> ( k + 1 ) of the array, the first super-diagonal starting at
</span><span class="comment">*</span><span class="comment"> position 2 in row k, and so on. The top left k by k triangle
</span><span class="comment">*</span><span class="comment"> of the array A is not referenced.
</span><span class="comment">*</span><span class="comment"> The following program segment will transfer the upper
</span><span class="comment">*</span><span class="comment"> triangular part of a hermitian band matrix from conventional
</span><span class="comment">*</span><span class="comment"> full matrix storage to band storage:
</span><span class="comment">*</span><span class="comment">
</span><span class="comment">*</span><span class="comment"> DO 20, J = 1, N
</span><span class="comment">*</span><span class="comment"> M = K + 1 - J
</span><span class="comment">*</span><span class="comment"> DO 10, I = MAX( 1, J - K ), J
</span><span class="comment">*</span><span class="comment"> A( M + I, J ) = matrix( I, J )
</span><span class="comment">*</span><span class="comment"> 10 CONTINUE
</span><span class="comment">*</span><span class="comment"> 20 CONTINUE
</span><span class="comment">*</span><span class="comment">
</span><span class="comment">*</span><span class="comment"> Before entry with UPLO = 'L' or 'l', the leading ( k + 1 )
</span><span class="comment">*</span><span class="comment"> by n part of the array A must contain the lower triangular
</span><span class="comment">*</span><span class="comment"> band part of the hermitian matrix, supplied column by
</span><span class="comment">*</span><span class="comment"> column, with the leading diagonal of the matrix in row 1 of
</span><span class="comment">*</span><span class="comment"> the array, the first sub-diagonal starting at position 1 in
</span><span class="comment">*</span><span class="comment"> row 2, and so on. The bottom right k by k triangle of the
</span><span class="comment">*</span><span class="comment"> array A is not referenced.
</span><span class="comment">*</span><span class="comment"> The following program segment will transfer the lower
</span><span class="comment">*</span><span class="comment"> triangular part of a hermitian band matrix from conventional
</span><span class="comment">*</span><span class="comment"> full matrix storage to band storage:
</span><span class="comment">*</span><span class="comment">
</span><span class="comment">*</span><span class="comment"> DO 20, J = 1, N
</span><span class="comment">*</span><span class="comment"> M = 1 - J
</span><span class="comment">*</span><span class="comment"> DO 10, I = J, MIN( N, J + K )
</span><span class="comment">*</span><span class="comment"> A( M + I, J ) = matrix( I, J )
</span><span class="comment">*</span><span class="comment"> 10 CONTINUE
</span><span class="comment">*</span><span class="comment"> 20 CONTINUE
</span><span class="comment">*</span><span class="comment">
</span><span class="comment">*</span><span class="comment"> Note that the imaginary parts of the diagonal elements need
</span><span class="comment">*</span><span class="comment"> not be set and are assumed to be zero.
</span><span class="comment">*</span><span class="comment"> Unchanged on exit.
</span><span class="comment">*</span><span class="comment">
</span><span class="comment">*</span><span class="comment"> LDA - INTEGER.
</span><span class="comment">*</span><span class="comment"> On entry, LDA specifies the first dimension of A as declared
</span><span class="comment">*</span><span class="comment"> in the calling (sub) program. LDA must be at least
</span><span class="comment">*</span><span class="comment"> ( k + 1 ).
</span><span class="comment">*</span><span class="comment"> Unchanged on exit.
</span><span class="comment">*</span><span class="comment">
</span><span class="comment">*</span><span class="comment"> X - COMPLEX array of DIMENSION at least
</span><span class="comment">*</span><span class="comment"> ( 1 + ( n - 1 )*abs( INCX ) ).
</span><span class="comment">*</span><span class="comment"> Before entry, the incremented array X must contain the
</span><span class="comment">*</span><span class="comment"> vector x.
</span><span class="comment">*</span><span class="comment"> Unchanged on exit.
</span><span class="comment">*</span><span class="comment">
</span><span class="comment">*</span><span class="comment"> INCX - INTEGER.
</span><span class="comment">*</span><span class="comment"> On entry, INCX specifies the increment for the elements of
</span><span class="comment">*</span><span class="comment"> X. INCX must not be zero.
</span><span class="comment">*</span><span class="comment"> Unchanged on exit.
</span><span class="comment">*</span><span class="comment">
</span><span class="comment">*</span><span class="comment"> BETA - COMPLEX .
</span><span class="comment">*</span><span class="comment"> On entry, BETA specifies the scalar beta.
</span><span class="comment">*</span><span class="comment"> Unchanged on exit.
</span><span class="comment">*</span><span class="comment">
</span><span class="comment">*</span><span class="comment"> Y - COMPLEX array of DIMENSION at least
</span><span class="comment">*</span><span class="comment"> ( 1 + ( n - 1 )*abs( INCY ) ).
</span><span class="comment">*</span><span class="comment"> Before entry, the incremented array Y must contain the
</span><span class="comment">*</span><span class="comment"> vector y. On exit, Y is overwritten by the updated vector y.
</span><span class="comment">*</span><span class="comment">
</span><span class="comment">*</span><span class="comment"> INCY - INTEGER.
</span><span class="comment">*</span><span class="comment"> On entry, INCY specifies the increment for the elements of
</span><span class="comment">*</span><span class="comment"> Y. INCY must not be zero.
</span><span class="comment">*</span><span class="comment"> Unchanged on exit.
</span><span class="comment">*</span><span class="comment">
</span><span class="comment">*</span><span class="comment">
</span><span class="comment">*</span><span class="comment"> Level 2 Blas routine.
</span><span class="comment">*</span><span class="comment">
</span><span class="comment">*</span><span class="comment"> -- Written on 22-October-1986.
</span><span class="comment">*</span><span class="comment"> Jack Dongarra, Argonne National Lab.
</span><span class="comment">*</span><span class="comment"> Jeremy Du Croz, Nag Central Office.
</span><span class="comment">*</span><span class="comment"> Sven Hammarling, Nag Central Office.
</span><span class="comment">*</span><span class="comment"> Richard Hanson, Sandia National Labs.
</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> COMPLEX ONE
PARAMETER (ONE= (1.0E+0,0.0E+0))
COMPLEX ZERO
PARAMETER (ZERO= (0.0E+0,0.0E+0))
<span class="comment">*</span><span class="comment"> ..
</span><span class="comment">*</span><span class="comment"> .. Local Scalars ..
</span> COMPLEX TEMP1,TEMP2
INTEGER I,INFO,IX,IY,J,JX,JY,KPLUS1,KX,KY,L
<span class="comment">*</span><span class="comment"> ..
</span><span class="comment">*</span><span class="comment"> .. External Functions ..
</span> LOGICAL <a name="LSAME.144"></a><a href="lsame.f.html#LSAME.1">LSAME</a>
EXTERNAL <a name="LSAME.145"></a><a href="lsame.f.html#LSAME.1">LSAME</a>
<span class="comment">*</span><span class="comment"> ..
</span><span class="comment">*</span><span class="comment"> .. External Subroutines ..
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?