hide long namesshow long names
hide short namesshow short names
Integer type:  int32  int64  nag_int  show int32  show int32  show int64  show int64  show nag_int  show nag_int

PDF version (NAG web site, 64-bit version, 64-bit version)
Chapter Contents
Chapter Introduction
NAG Toolbox

NAG Toolbox: nag_matop_dtrttf (f01ve)

 Contents

    1  Purpose
    2  Syntax
    7  Accuracy
    9  Example

Purpose

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

Syntax

[ar, info] = f01ve(transr, uplo, a, 'n', n)
[ar, info] = nag_matop_dtrttf(transr, uplo, a, 'n', n)

Description

nag_matop_dtrttf (f01ve) packs a real n by n triangular matrix A, stored conventionally in a full format array, into RFP format. This function is intended for possible use in conjunction with functions from Chapters F07 and F16 where some functions that use triangular matrices store them in RFP format. The RFP storage format is described in Rectangular Full Packed (RFP) Storage in the F07 Chapter 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

Parameters

Compulsory Input Parameters

1:     transr – string (length ≥ 1)
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 – string (length ≥ 1)
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:     alda: – double array
The first dimension of the array a must be at least max1,n.
The second dimension of the array a must be at least n.
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.

Optional Input Parameters

1:     n int64int32nag_int scalar
Default: the first dimension of the array a.
n, the order of the matrix A.
Constraint: n0.

Output Parameters

1:     arn×n+1/2 – double array
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 Rectangular Full Packed (RFP) Storage in the F07 Chapter Introduction.
2:     info int64int32nag_int scalar
info=0 unless the function detects an error (see Error Indicators and Warnings).

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.

Accuracy

Not applicable.

Further Comments

None.

Example

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


fprintf('f01ve example results\n\n');

uplo   = 'u';
transr = 'n';
a = [1.1, 1.2, 1.3, 1.4;
     0.0, 2.2, 2.3, 2.4;
     0.0, 0.0, 3.3, 3.4;
     0.0, 0.0, 0.0, 4.4];
% Print the unpacked matrix
fprintf('\n');
[ifail] = x04cb(uplo, 'n', a, 'f5.2', 'Unpacked matrix a:', 'i', ...
                {''}, 'i', {''}, int64(80), int64(0));
% Convert to Rectangular Full Packed form
[ar, info] = f01ve(transr, uplo, a);
% Print the Rectangular Full Packed array
fprintf('\n');
[ifail] = x04cb('g', 'x', ar, 'f5.2', 'RFP Packed Array ar:', 'i', ...
                {''}, 'n', {''}, int64(80), int64(0));

n = int64(size(a,1));
k = int64(n/2);
q = n - k;
if transr=='N' || transr=='n'
  lar1 = 2*k + 1;
  lar2 = q;
else
  lar1 = q;
  lar2 = 2*k + 1;
end

ar = reshape(ar,lar1,lar2);

fprintf('\n');
[ifail] = x04cb('g', 'x', ar, 'f5.2', ... 
                'RFP Packed Array ar (graphical representation):', 'i', ...
                {''}, 'i', {''}, int64(80), int64(0), 'm', lar1, 'n', lar2);


f01ve example results


 Unpacked matrix a:
       1    2    3    4
 1  1.10 1.20 1.30 1.40
 2       2.20 2.30 2.40
 3            3.30 3.40
 4                 4.40

 RFP Packed Array ar:
  1  1.30
  2  2.30
  3  3.30
  4  1.10
  5  1.20
  6  1.40
  7  2.40
  8  3.40
  9  4.40
 10  2.20

 RFP Packed Array ar (graphical representation):
       1    2
 1  1.30 1.40
 2  2.30 2.40
 3  3.30 3.40
 4  1.10 4.40
 5  1.20 2.20

PDF version (NAG web site, 64-bit version, 64-bit version)
Chapter Contents
Chapter Introduction
NAG Toolbox

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