F01VDF (ZTPTTR) (PDF version)
F01 Chapter Contents
F01 Chapter Introduction
NAG Library Manual

NAG Library Routine Document

F01VDF (ZTPTTR)

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

F01VDF (ZTPTTR) unpacks a complex triangular matrix, stored in packed format in a one-dimensional array, to full format in a two-dimensional array. Packed storage format is described in Section 3.3.2 in the F07 Chapter Introduction.

2  Specification

SUBROUTINE F01VDF ( UPLO, N, AP, A, LDA, INFO)
INTEGER  N, LDA, INFO
COMPLEX (KIND=nag_wp)  AP(N*(N+1)/2), A(LDA,*)
CHARACTER(1)  UPLO
The routine may be called by its LAPACK name ztpttr.

3  Description

F01VDF (ZTPTTR) unpacks a complex n by n triangular matrix A, stored in a one-dimensional array of length nn+1/2 to conventional storage in a two-dimensional array. This routine is intended for possible use in conjunction with routines from Chapters F06, F07 and F08 where some routines use triangular matrices stored in the packed form.

4  References

None.

5  Parameters

1:     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'.
2:     N – INTEGERInput
On entry: n, the order of the matrix A.
Constraint: N1.
3:     AP(N×N+1/2) – COMPLEX (KIND=nag_wp) arrayInput
On entry: the n by n triangular matrix A, packed by columns.
More precisely,
  • if UPLO='U', the upper triangle of A must be stored with element Aij in APi+jj-1/2 for ij;
  • if UPLO='L', the lower triangle of A must be stored with element Aij in APi+2n-jj-1/2 for ij.
4:     A(LDA,*) – COMPLEX (KIND=nag_wp) arrayOutput
Note: the second dimension of the array A must be at least N.
On exit: 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 F01VDF (ZTPTTR) is called.
Constraint: LDAmax1,N.
6:     INFO – INTEGEROutput
On exit: INFO=0 unless the routine detects an error (see Section 6).

6  Error Indicators and Warnings

Errors or warnings detected by the routine:
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  Further Comments

None.

9  Example

This example reads in a triangular matrix packed by columns and unpacks it to full format.

9.1  Program Text

Program Text (f01vdfe.f90)

9.2  Program Data

Program Data (f01vdfe.d)

9.3  Program Results

Program Results (f01vdfe.r)


F01VDF (ZTPTTR) (PDF version)
F01 Chapter Contents
F01 Chapter Introduction
NAG Library Manual

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