F01VEF (DTRTTF) (PDF version)
F01 Chapter Contents
F01 Chapter Introduction
NAG Library Manual

NAG Library Routine Document

F01VEF (DTRTTF)

Note:  before using this routine, please read the Users' Note for your implementation to check the interpretation of bold italicised terms and other implementation-dependent details.

 Contents

    1  Purpose
    7  Accuracy

1  Purpose

F01VEF (DTRTTF) copies a real triangular matrix, stored in a full format array, to a Rectangular Full Packed (RFP) format array.

2  Specification

SUBROUTINE F01VEF ( TRANSR, UPLO, N, A, LDA, AR, INFO)
INTEGER  N, LDA, INFO
REAL (KIND=nag_wp)  A(LDA,*), AR(N*(N+1)/2)
CHARACTER(1)  TRANSR, UPLO
The routine may be called by its LAPACK name dtrttf.

3  Description

F01VEF (DTRTTF) packs a real n by n triangular matrix A, stored conventionally in a full format array, into RFP format. This routine is intended for possible use in conjunction with routines from Chapters F06, F07 and F16 where some routines that use triangular matrices store them in RFP format. The RFP storage format is described in Section 3.3.3 in the F07 Chapter Introduction.

4  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

5  Parameters

1:     TRANSR – CHARACTER(1)Input
On entry: specifies whether the normal RFP representation of A or its transpose is stored.
TRANSR='N'
The RFP representation of the matrix A is stored.
TRANSR='T'
The transpose of the RFP representation of the matrix A is stored.
Constraint: TRANSR='N' or 'T'.
2:     UPLO – CHARACTER(1)Input
On entry: specifies whether A is upper or lower triangular.
UPLO='U'
A is upper triangular.
UPLO='L'
A is lower triangular.
Constraint: UPLO='U' or 'L'.
3:     N – INTEGERInput
On entry: n, the order of the matrix A.
Constraint: N0.
4:     ALDA* – REAL (KIND=nag_wp) arrayInput
Note: the second dimension of the array A must be at least N.
On entry: the triangular matrix A.
  • If UPLO='U', A is upper triangular and the elements of the array below the diagonal are not referenced.
  • If UPLO='L', A is lower triangular and the elements of the array above the diagonal are not referenced.
5:     LDA – INTEGERInput
On entry: the first dimension of the array A as declared in the (sub)program from which F01VEF (DTRTTF) is called.
Constraint: LDAmax1,N.
6:     ARN×N+1/2 – REAL (KIND=nag_wp) arrayOutput
On exit: the upper or lower n by n triangular matrix A (as specified by UPLO) in either normal or transposed RFP format (as specified by TRANSR). The storage format is described in Section 3.3.3 in the F07 Chapter Introduction.
7:     INFO – INTEGEROutput
On exit: INFO=0 unless the routine detects an error (see Section 6).

6  Error Indicators and Warnings

INFO<0
If INFO=-i, argument i had an illegal value. An explanatory message is output, and execution of the program is terminated.

7  Accuracy

Not applicable.

8  Parallelism and Performance

Not applicable.

9  Further Comments

None.

10  Example

This example reads in a triangular matrix and copies it to RFP format.

10.1  Program Text

Program Text (f01vefe.f90)

10.2  Program Data

Program Data (f01vefe.d)

10.3  Program Results

Program Results (f01vefe.r)


F01VEF (DTRTTF) (PDF version)
F01 Chapter Contents
F01 Chapter Introduction
NAG Library Manual

© The Numerical Algorithms Group Ltd, Oxford, UK. 2015