naginterfaces.library.blas.zher2k¶
- naginterfaces.library.blas.zher2k(uplo, trans, k, alpha, a, b, beta, c)[source]¶
zher2k
performs one of the Hermitian rank- update operationswhere and are complex matrices, is an complex Hermitian matrix, is a complex scalar, and is a real scalar.
For full information please refer to the NAG Library document for f06zr
https://support.nag.com/numeric/nl/nagdoc_30.2/flhtml/f06/f06zrf.html
- Parameters
- uplostr, length 1
Specifies whether the upper or lower triangular part of is stored.
The upper triangular part of is stored.
The lower triangular part of is stored.
- transstr, length 1
Specifies the operation to be performed.
.
.
- kint
, the number of columns of if , or the number of rows of if .
- alphacomplex
The scalar .
- acomplex, array-like, shape
Note: the required extent for this argument in dimension 1 is determined as follows: if : ; if : ; otherwise: .
Note: the required extent for this argument in dimension 2 is determined as follows: if : ; if : ; otherwise: .
The matrix ; is if , or if .
- bcomplex, array-like, shape
Note: the required extent for this argument in dimension 1 is determined as follows: if : ; if : ; otherwise: .
Note: the required extent for this argument in dimension 2 is determined as follows: if : ; if : ; otherwise: .
The matrix ; is if , or if .
- betafloat
The scalar .
- ccomplex, array-like, shape
The Hermitian matrix .
- Returns
- ccomplex, ndarray, shape
The updated matrix . The imaginary parts of the diagonal elements are set to zero.
- Raises
- NagValueError
- (errno )
On entry, error in parameter .
Constraint: or .
- (errno )
On entry, error in parameter .
Constraint: or .
- (errno )
On entry, error in parameter .
Constraint: .
- (errno )
On entry, error in parameter .
Constraint: .
- Notes
In the NAG Library the traditional C interface for this routine uses a different algorithmic base. Please contact NAG if you have any questions about compatibility.