version 1.9, 2012/08/22 09:36:41
|
version 1.16, 2023/08/07 08:38:45
|
Line 2
|
Line 2
|
* |
* |
* =========== DOCUMENTATION =========== |
* =========== DOCUMENTATION =========== |
* |
* |
* Online html documentation available at |
* Online html documentation available at |
* http://www.netlib.org/lapack/explore-html/ |
* http://www.netlib.org/lapack/explore-html/ |
* |
* |
* Definition: |
* Definition: |
* =========== |
* =========== |
* |
* |
* SUBROUTINE ZHER2K(UPLO,TRANS,N,K,ALPHA,A,LDA,B,LDB,BETA,C,LDC) |
* SUBROUTINE ZHER2K(UPLO,TRANS,N,K,ALPHA,A,LDA,B,LDB,BETA,C,LDC) |
* |
* |
* .. Scalar Arguments .. |
* .. Scalar Arguments .. |
* COMPLEX*16 ALPHA |
* COMPLEX*16 ALPHA |
* DOUBLE PRECISION BETA |
* DOUBLE PRECISION BETA |
Line 19
|
Line 19
|
* .. Array Arguments .. |
* .. Array Arguments .. |
* COMPLEX*16 A(LDA,*),B(LDB,*),C(LDC,*) |
* COMPLEX*16 A(LDA,*),B(LDB,*),C(LDC,*) |
* .. |
* .. |
* |
* |
* |
* |
*> \par Purpose: |
*> \par Purpose: |
* ============= |
* ============= |
Line 95
|
Line 95
|
*> |
*> |
*> \param[in] A |
*> \param[in] A |
*> \verbatim |
*> \verbatim |
*> A is COMPLEX*16 array of DIMENSION ( LDA, ka ), where ka is |
*> A is COMPLEX*16 array, dimension ( LDA, ka ), where ka is |
*> k when TRANS = 'N' or 'n', and is n otherwise. |
*> k when TRANS = 'N' or 'n', and is n otherwise. |
*> Before entry with TRANS = 'N' or 'n', the leading n by k |
*> Before entry with TRANS = 'N' or 'n', the leading n by k |
*> part of the array A must contain the matrix A, otherwise |
*> part of the array A must contain the matrix A, otherwise |
Line 114
|
Line 114
|
*> |
*> |
*> \param[in] B |
*> \param[in] B |
*> \verbatim |
*> \verbatim |
*> B is COMPLEX*16 array of DIMENSION ( LDB, kb ), where kb is |
*> B is COMPLEX*16 array, dimension ( LDB, kb ), where kb is |
*> k when TRANS = 'N' or 'n', and is n otherwise. |
*> k when TRANS = 'N' or 'n', and is n otherwise. |
*> Before entry with TRANS = 'N' or 'n', the leading n by k |
*> Before entry with TRANS = 'N' or 'n', the leading n by k |
*> part of the array B must contain the matrix B, otherwise |
*> part of the array B must contain the matrix B, otherwise |
Line 140
|
Line 140
|
*> |
*> |
*> \param[in,out] C |
*> \param[in,out] C |
*> \verbatim |
*> \verbatim |
*> C is COMPLEX*16 array of DIMENSION ( LDC, n ). |
*> C is COMPLEX*16 array, dimension ( LDC, N ) |
*> Before entry with UPLO = 'U' or 'u', the leading n by n |
*> Before entry with UPLO = 'U' or 'u', the leading n by n |
*> upper triangular part of the array C must contain the upper |
*> upper triangular part of the array C must contain the upper |
*> triangular part of the hermitian matrix and the strictly |
*> triangular part of the hermitian matrix and the strictly |
Line 169
|
Line 169
|
* Authors: |
* Authors: |
* ======== |
* ======== |
* |
* |
*> \author Univ. of Tennessee |
*> \author Univ. of Tennessee |
*> \author Univ. of California Berkeley |
*> \author Univ. of California Berkeley |
*> \author Univ. of Colorado Denver |
*> \author Univ. of Colorado Denver |
*> \author NAG Ltd. |
*> \author NAG Ltd. |
* |
|
*> \date November 2011 |
|
* |
* |
*> \ingroup complex16_blas_level3 |
*> \ingroup complex16_blas_level3 |
* |
* |
Line 198
|
Line 196
|
* ===================================================================== |
* ===================================================================== |
SUBROUTINE ZHER2K(UPLO,TRANS,N,K,ALPHA,A,LDA,B,LDB,BETA,C,LDC) |
SUBROUTINE ZHER2K(UPLO,TRANS,N,K,ALPHA,A,LDA,B,LDB,BETA,C,LDC) |
* |
* |
* -- Reference BLAS level3 routine (version 3.4.0) -- |
* -- Reference BLAS level3 routine -- |
* -- Reference BLAS is a software package provided by Univ. of Tennessee, -- |
* -- Reference BLAS is a software package provided by Univ. of Tennessee, -- |
* -- Univ. of California Berkeley, Univ. of Colorado Denver and NAG Ltd..-- |
* -- Univ. of California Berkeley, Univ. of Colorado Denver and NAG Ltd..-- |
* November 2011 |
|
* |
* |
* .. Scalar Arguments .. |
* .. Scalar Arguments .. |
COMPLEX*16 ALPHA |
COMPLEX*16 ALPHA |
Line 438
|
Line 435
|
* |
* |
RETURN |
RETURN |
* |
* |
* End of ZHER2K. |
* End of ZHER2K |
* |
* |
END |
END |