naginterfaces.library.blas.dlansp

naginterfaces.library.blas.dlansp(norm, uplo, n, ap)[source]

dlansp returns the value of the -norm, the -norm, the Frobenius norm, or the maximum absolute value of the elements of a real symmetric matrix, stored in packed form.

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

https://www.nag.com/numeric/nl/nagdoc_29.3/flhtml/f06/f06rdf.html

Parameters
normstr, length 1

Specifies the value to be returned.

or

The -norm.

The -norm (= the -norm for a symmetric matrix).

or

The Frobenius (or Euclidean) norm.

The value (not a norm).

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.

nint

, the order of the matrix .

When , dlansp returns zero.

apfloat, array-like, shape

The symmetric matrix , packed by columns.

Returns
nrmfloat

The value of the -norm, the -norm, the Frobenius norm, or the maximum absolute value of the elements of the real symmetric matrix, stored in packed form.

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: .

Notes

No equivalent traditional C interface for this routine exists in the NAG Library.