naginterfaces.library.blas.zsyrk¶
- naginterfaces.library.blas.zsyrk(uplo, trans, k, alpha, a, beta, c)[source]¶
zsyrk
performs one of the symmetric rank- update operationswhere is a complex matrix, is an complex symmetric matrix, and and are complex scalars.
For full information please refer to the NAG Library document for f06zu
https://support.nag.com/numeric/nl/nagdoc_30.2/flhtml/f06/f06zuf.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 and if , or the number of rows of and 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 .
- betacomplex
The scalar .
- ccomplex, array-like, shape
The symmetric matrix .
- Returns
- ccomplex, ndarray, shape
The updated matrix .
- 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.