naginterfaces.library.blas.dsyrk

naginterfaces.library.blas.dsyrk(uplo, trans, k, alpha, a, beta, c)[source]

dsyrk performs one of the symmetric rank- update operations

where is a real matrix, is an real symmetric matrix, and and are real scalars.

For full information please refer to the NAG Library document for f06yp

https://www.nag.com/numeric/nl/nagdoc_29.3/flhtml/f06/f06ypf.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.

.

or

.

kint

, the number of columns of if , or the number of rows of if or .

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 matrix ; is if , or if or .

betafloat

The scalar .

cfloat, array-like, shape

The symmetric matrix .

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.