naginterfaces.library.matop.ztrttf¶
- naginterfaces.library.matop.ztrttf(transr, uplo, a)[source]¶
ztrttf
copies a complex triangular matrix, stored in a full format array, to a Rectangular Full Packed (RFP) format array.For full information please refer to the NAG Library document for f01vf
https://support.nag.com/numeric/nl/nagdoc_30.2/flhtml/f01/f01vff.html
- Parameters
- transrstr, length 1
Specifies whether the normal RFP representation of or its conjugate transpose is stored.
The RFP representation of the matrix is stored.
The conjugate transpose of the RFP representation of the matrix is stored.
- uplostr, length 1
Specifies whether is upper or lower triangular.
is upper triangular.
is lower triangular.
- acomplex, array-like, shape
The triangular matrix .
- Returns
- arcomplex, ndarray, shape
The upper or lower triangular matrix (as specified by ) in either normal or transposed RFP format (as specified by ). The storage format is described in the F07 Introduction.
- 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
ztrttf
packs a complex triangular matrix , stored conventionally in a full format array, into RFP format. This function is intended for possible use in conjunction with functions from submoduleblas
, submoduleblast
and submodulelapacklin
where some functions that use triangular matrices store them in RFP format. The RFP storage format is described in the F07 Introduction.
- References
Gustavson, F G, Waśniewski, J, Dongarra, J J and Langou, J, 2010, Rectangular full packed format for Cholesky’s algorithm: factorization, solution, and inversion, ACM Trans. Math. Software (37, 2)