naginterfaces.library.matop.ztfttp¶
- naginterfaces.library.matop.ztfttp(transr, uplo, n, ar)[source]¶
ztfttp
copies a complex triangular matrix, stored in a Rectangular Full Packed (RFP) format array, to a standard packed format array.For full information please refer to the NAG Library document for f01vm
https://support.nag.com/numeric/nl/nagdoc_30.2/flhtml/f01/f01vmf.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.
- nint
, the order of the matrix .
- arcomplex, array-like, 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.
- Returns
- apcomplex, ndarray, shape
The triangular matrix , packed by columns.
- 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
ztfttp
packs a complex triangular matrix , stored in RFP format, to packed 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 and the packed 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)