F06SNF (ZGERC) (PDF version)
F06 Chapter Contents
F06 Chapter Introduction
NAG Library Manual
NAG Library Routine Document
F06SNF (ZGERC)
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
Parallelism and Performance
9
Further Comments
10
Example
1 Purpose
F06SNF (ZGERC) computes the rank-1 update of a complex general matrix using a conjugated vector.
2 Specification
SUBROUTINE F06SNF (
M
,
N
,
ALPHA
,
X
,
INCX
,
Y
,
INCY
,
A
,
LDA
)
INTEGER
M, N, INCX, INCY, LDA
COMPLEX (KIND=nag_wp)
ALPHA, X(*), Y(*), A(LDA,*)
The routine may be called by its BLAS name
zgerc
.
3 Description
F06SNF (ZGERC) performs the rank-1 update operation
A
←
α
x
y
H
+
A
,
where
A
is an
m
by
n
complex matrix,
x
is an
m
element complex vector,
y
is an
n
-element complex vector, and
α
is a complex scalar.
4 References
None.
5 Parameters
1:
M
– INTEGER
Input
On entry
:
m
, the number of rows of the matrix
A
.
Constraint
:
M
≥
0
.
2:
N
– INTEGER
Input
On entry
:
n
, the number of columns of the matrix
A
.
Constraint
:
N
≥
0
.
3:
ALPHA
– COMPLEX (KIND=nag_wp)
Input
On entry
: the scalar
α
.
4:
X
*
– COMPLEX (KIND=nag_wp) array
Input
Note:
the dimension of the array
X
must be at least
max
1
,
1
+
M
-
1
×
INCX
.
On entry
: the
m
element vector
x
.
If
INCX
>
0
,
x
i
must be stored in
X
1
+
i
–
1
×
INCX
, for
i
=
1
,
2
,
…
,
M
.
If
INCX
<
0
,
x
i
must be stored in
X
1
–
M
–
i
×
INCX
, for
i
=
1
,
2
,
…
,
M
.
Intermediate elements of X are not referenced.
5:
INCX
– INTEGER
Input
On entry
: the increment in the subscripts of
X
between successive elements of
x
.
Constraint
:
INCX
≠
0
.
6:
Y
*
– COMPLEX (KIND=nag_wp) array
Input
Note:
the dimension of the array
Y
must be at least
max
1
,
1
+
N
-
1
×
INCY
.
On entry
: the
n
-element vector
y
.
If
INCY
>
0
,
y
i
must be stored in
Y
1
+
i
-
1
×
INCY
, for
i
=
1
,
2
,
…
,
N
.
If
INCY
<
0
,
y
i
must be stored in
Y
1
-
N
-
i
×
INCY
, for
i
=
1
,
2
,
…
,
N
.
Intermediate elements of
Y
are not referenced.
7:
INCY
– INTEGER
Input
On entry
: the increment in the subscripts of
Y
between successive elements of
y
.
Constraint
:
INCY
≠
0
.
8:
A
LDA
*
– COMPLEX (KIND=nag_wp) array
Input/Output
Note:
the second dimension of the array
A
must be at least
N
.
On entry
: the
m
by
n
matrix
A
.
On exit
: the updated matrix
A
.
9:
LDA
– INTEGER
Input
On entry
: the first dimension of the array
A
as declared in the (sub)program from which F06SNF (ZGERC) is called.
Constraint
:
LDA
≥
max
1
,
M
.
6 Error Indicators and Warnings
None.
7 Accuracy
Not applicable.
8 Parallelism and Performance
Not applicable.
9 Further Comments
None.
10 Example
None.
F06SNF (ZGERC) (PDF version)
F06 Chapter Contents
F06 Chapter Introduction
NAG Library Manual
© The Numerical Algorithms Group Ltd, Oxford, UK. 2015