F06THF (PDF version)
F06 Chapter Contents
F06 Chapter Introduction
NAG Library Manual
NAG Library Routine Document
F06THF
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
2
Specification
3
Description
4
References
5
Parameters
6
Error Indicators and Warnings
7
Accuracy
8
Further Comments
9
Example
1 Purpose
F06THF forms the complex
m
by
n
rectangular or trapezoidal matrix
A
given by
a
i
j
=
diag
if
i
=
j
const
if
i
≠
j
.
2 Specification
SUBROUTINE F06THF (
MATRIX
,
M
,
N
,
CON
,
DIAG
,
A
,
LDA
)
INTEGER
M, N, LDA
COMPLEX (KIND=nag_wp)
CON, DIAG, A(LDA,*)
CHARACTER(1)
MATRIX
3 Description
None.
4 References
None.
5 Parameters
1: MATRIX – CHARACTER(1)
Input
On entry
: the matrix type.
MATRIX
=
'G'
General matrix.
MATRIX
=
'U'
Upper trapezoidal matrix (upper triangular if
m
=
n
).
MATRIX
=
'L'
Lower trapezoidal matrix (lower triangular if
m
=
n
).
Constraint
:
MATRIX
=
'G'
,
'U'
or
'L'
.
2: M – INTEGER
Input
On entry
:
m
, the number of rows of the matrix
A
.
Constraint
:
M
≥
0
.
3: N – INTEGER
Input
On entry
:
n
, the number of columns of the matrix
A
.
Constraint
:
N
≥
0
.
4: CON – COMPLEX (KIND=nag_wp)
Input
On entry
: the value to be assigned to the off-diagonal elements of
A
.
5: DIAG – COMPLEX (KIND=nag_wp)
Input
On entry
: the value to be assigned to the diagonal elements of
A
.
6: A(
LDA
,
*
) – COMPLEX (KIND=nag_wp) array
Output
Note:
the second dimension of the array
A
must be at least
N
.
On exit
: the
m
by
n
general or trapezoidal matrix
A
.
If
MATRIX
=
'U'
,
A
is upper trapezoidal and the elements of the array below the diagonal are not referenced.
If
MATRIX
=
'L'
,
A
is lower trapezoidal and the elements of the array above the diagonal are not referenced.
7: LDA – INTEGER
Input
On entry
: the first dimension of the array
A
as declared in the (sub)program from which F06THF is called.
Constraint
:
LDA
≥
max
1
,
M
.
6 Error Indicators and Warnings
None.
7 Accuracy
Not applicable.
8 Further Comments
None.
9 Example
None.
F06THF (PDF version)
F06 Chapter Contents
F06 Chapter Introduction
NAG Library Manual
© The Numerical Algorithms Group Ltd, Oxford, UK. 2012