naginterfaces.library.blas.dsymm¶
- naginterfaces.library.blas.dsymm(side, uplo, m, alpha, a, b, beta, c=None)[source]¶
dsymm
performs one of the matrix-matrix operationswhere is a real symmetric matrix, and are real matrices, and and are real scalars.
For full information please refer to the NAG Library document for f06yc
https://support.nag.com/numeric/nl/nagdoc_30.2/flhtml/f06/f06ycf.html
- Parameters
- sidestr, length 1
Specifies whether is operated on from the left or the right.
is pre-multiplied from the left.
is post-multiplied from the right.
- 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.
- mint
, the number of rows of the matrices and ; the order of if .
- alphafloat
The scalar .
- afloat, 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 symmetric matrix ; is if , or if .
- bfloat, array-like, shape
The matrix .
- betafloat
The scalar .
- cNone or float, array-like, shape , optional
The matrix .
If , need not be set.
- Returns
- cfloat, 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.