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_file_print_matrix_complex_packed (x04dc)

 Contents

    1  Purpose
    2  Syntax
    7  Accuracy
    9  Example

Purpose

nag_file_print_matrix_complex_packed (x04dc) is an easy-to-use function to print a complex triangular matrix stored in a packed one-dimensional array.

Syntax

[ifail] = x04dc(uplo, diag, n, a, title)
[ifail] = nag_file_print_matrix_complex_packed(uplo, diag, n, a, title)

Description

nag_file_print_matrix_complex_packed (x04dc) prints a complex triangular matrix stored in packed form. It is an easy-to-use driver for nag_file_print_matrix_complex_packed_comp (x04dd). The function uses default values for the format in which numbers are printed, for labelling the rows and columns, and for output record length. The matrix must be packed by column.
nag_file_print_matrix_complex_packed (x04dc) will choose a format code such that numbers will be printed with an F8.4, an F11.4 or a 1PE13.4 format . The F8.4 code is chosen if the sizes of all the matrix elements to be printed lie between 0.001 and 1.0. The F11.4 code is chosen if the sizes of all the matrix elements to be printed lie between 0.001 and 9999.9999. Otherwise the 1PE13.4 code is chosen. The chosen code is used to print each complex element of the matrix with the real part above the imaginary part.
The matrix is printed with integer row and column labels, and with a maximum record length of 80.
The matrix is output to the unit defined by nag_file_set_unit_advisory (x04ab).

References

None.

Parameters

Compulsory Input Parameters

1:     uplo – string (length ≥ 1)
Indicates the type of the matrix to be printed
uplo='L'
The matrix is lower triangular. In this case, the packed array a holds the matrix elements in the following order: 1,1,2,1,,n,1,2,2,3,2,,n,2, etc.
uplo='U'
The matrix is upper triangular. In this case, the packed array a holds the matrix elements in the following order: 1,1,1,2,2,2,1,3,2,3,3,3,1,4, etc.
Constraint: uplo='L' or 'U'.
2:     diag – string (length ≥ 1)
Indicates whether the diagonal elements of the matrix are to be printed.
diag='B'
The diagonal elements of the matrix are not referenced and not printed.
diag='U'
The diagonal elements of the matrix are not referenced, but are assumed all to be unity, and are printed as such.
diag='N'
The diagonal elements of the matrix are referenced and printed.
Constraint: diag='B', 'U' or 'N'.
3:     n int64int32nag_int scalar
The order of the matrix to be printed.
If n is less than 1, nag_file_print_matrix_complex_packed (x04dc) will exit immediately after printing title; no row or column labels are printed.
4:     a: – complex array
The dimension of the array a must be at least max1,n×n+1/2
The matrix to be printed. Note that a must have space for the diagonal elements of the matrix, even if these are not stored.
More precisely,
  • if uplo='U', the upper triangle of A must be stored with element Aij in ai+jj-1/2 for ij;
  • if uplo='L', the lower triangle of A must be stored with element Aij in ai+2n-jj-1/2 for ij.
If diag='U', the diagonal elements of A are assumed to be 1, and are not referenced; the same storage scheme is used whether diag='N' or ‘U’.
5:     title – string
A title to be printed above the matrix.
If title=' ', no title (and no blank line) will be printed.
If title contains more than 80 characters, the contents of title will be wrapped onto more than one line, with the break after 80 characters.
Any trailing blank characters in title are ignored.

Optional Input Parameters

None.

Output Parameters

1:     ifail int64int32nag_int scalar
ifail=0 unless the function detects an error (see Error Indicators and Warnings).

Error Indicators and Warnings

Errors or warnings detected by the function:
   ifail=1
On entry,uplo'L' or 'U'.
   ifail=2
On entry,diag'N', 'U' or 'B'.
   ifail=-99
An unexpected error has been triggered by this routine. Please contact NAG.
   ifail=-399
Your licence key may have expired or may not have been installed correctly.
   ifail=-999
Dynamic memory allocation failed.

Accuracy

Not applicable.

Further Comments

A call to nag_file_print_matrix_complex_packed (x04dc) is equivalent to a call to nag_file_print_matrix_complex_packed_comp (x04dd) with the following argument values:

ncols = 80
indent = 0
labrow = 'I'
labcol = 'I'
form = ' '
usefrm = 'A' 

Example

The example program calls nag_file_print_matrix_complex_packed (x04dc) twice, first to print a 3 by 3 lower triangular matrix, and then to print a 4 by 4 upper triangular matrix.
function x04dc_example


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

nmax = 4;
la = (nmax*(nmax+1))/2;
a(1:la) = [1:la] - i*[1:la];

% First matrix : 3x3 unit lower triangular 
mtitle = 'Example 1:';
n = int64(nmax-1);
uplo   = 'Lower';
diag   = 'Unit';
[ifail] = x04dc( ...
                 uplo, diag, n, a, mtitle);

fprintf('\n');
% Second matrix : 4x4 non-unit upper triangular 
mtitle = 'Example 2:';
n = int64(nmax);
uplo   = 'Upper';
diag   = 'Non-unit';
[ifail] = x04dc( ...
                 uplo, diag, n, a, mtitle);


x04dc example results

 Example 1:
             1          2          3
 1      1.0000
        0.0000

 2      2.0000     1.0000
       -2.0000     0.0000

 3      3.0000     5.0000     1.0000
       -3.0000    -5.0000     0.0000

 Example 2:
             1          2          3          4
 1      1.0000     2.0000     4.0000     7.0000
       -1.0000    -2.0000    -4.0000    -7.0000

 2                 3.0000     5.0000     8.0000
                  -3.0000    -5.0000    -8.0000

 3                            6.0000     9.0000
                             -6.0000    -9.0000

 4                                      10.0000
                                       -10.0000

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