NAG FL Interface
f06zwf (zsyr2k)

Settings help

FL Name Style:


FL Specification Language:


1 Purpose

f06zwf performs one of the symmetric rank-2k update operations
CαABT + αBAT + βC   or   CαATB + αBTA + βC ,  
where A and B are complex matrices, C is an n×n complex symmetric matrix, and α and β are complex scalars.

2 Specification

Fortran Interface
Subroutine f06zwf ( uplo, trans, n, k, alpha, a, lda, b, ldb, beta, c, ldc)
Integer, Intent (In) :: n, k, lda, ldb, ldc
Complex (Kind=nag_wp), Intent (In) :: alpha, a(lda,*), b(ldb,*), beta
Complex (Kind=nag_wp), Intent (Inout) :: c(ldc,*)
Character (1), Intent (In) :: uplo, trans
C Header Interface
#include <nag.h>
void  f06zwf_ (const char *uplo, const char *trans, const Integer *n, const Integer *k, const Complex *alpha, const Complex a[], const Integer *lda, const Complex b[], const Integer *ldb, const Complex *beta, Complex c[], const Integer *ldc, const Charlen length_uplo, const Charlen length_trans)
The routine may be called by the names f06zwf, nagf_blas_zsyr2k or its BLAS name zsyr2k.

3 Description

None.

4 References

None.

5 Arguments

1: uplo Character(1) Input
On entry: specifies whether the upper or lower triangular part of C is stored.
uplo='U'
The upper triangular part of C is stored.
uplo='L'
The lower triangular part of C is stored.
Constraint: uplo='U' or 'L'.
2: trans Character(1) Input
On entry: specifies the operation to be performed.
trans='N'
CαABT+αBAT+βC.
trans='T'
CαATB+αBTA+βC.
Constraint: trans='N' or 'T'.
3: n Integer Input
On entry: n, the order of the matrix C; the number of rows of A and B if trans='N', or the number of columns of A and B if trans='T'.
Constraint: n0.
4: k Integer Input
On entry: k, the number of columns of A and B if trans='N', or the number of rows of A and B if trans='T'.
Constraint: k0.
5: alpha Complex (Kind=nag_wp) Input
On entry: the scalar α.
6: a(lda,*) Complex (Kind=nag_wp) array Input
Note: the second dimension of the array a must be at least max(1,k) if trans='N' and at least max(1,n) if trans='T'.
On entry: the matrix A; A is n×k if trans='N', or k×n if trans='T'.
7: lda Integer Input
On entry: the first dimension of the array a as declared in the (sub)program from which f06zwf is called.
Constraints:
  • if trans='N', lda max(1,n) ;
  • if trans='T', lda max(1,k) .
8: b(ldb,*) Complex (Kind=nag_wp) array Input
Note: the second dimension of the array b must be at least max(1,k) if trans='N' and at least max(1,n) if trans='T'.
On entry: the matrix B; B is n×k if trans='N', or k×n if trans='T'.
9: ldb Integer Input
On entry: the first dimension of the array b as declared in the (sub)program from which f06zwf is called.
Constraints:
  • if trans='N', ldb max(1,n) ;
  • if trans='T', ldb max(1,k) .
10: beta Complex (Kind=nag_wp) Input
On entry: the scalar β.
11: c(ldc,*) Complex (Kind=nag_wp) array Input/Output
Note: the second dimension of the array c must be at least max(1,n).
On entry: the n×n symmetric matrix C.
  • If uplo='U', the upper triangular part of C must be stored and the elements of the array below the diagonal are not referenced.
  • If uplo='L', the lower triangular part of C must be stored and the elements of the array above the diagonal are not referenced.
On exit: the updated matrix C.
12: ldc Integer Input
On entry: the first dimension of the array c as declared in the (sub)program from which f06zwf is called.
Constraint: ldcmax(1,n) .

6 Error Indicators and Warnings

None.

7 Accuracy

Not applicable.

8 Parallelism and Performance

Background information to multithreading can be found in the Multithreading documentation.
f06zwf is threaded by NAG for parallel execution in multithreaded implementations of the NAG Library.
f06zwf makes calls to BLAS and/or LAPACK routines, which may be threaded within the vendor library used by this implementation. Consult the documentation for the vendor library for further information.
Please consult the X06 Chapter Introduction for information on how to control and interrogate the OpenMP environment used within this routine. Please also consult the Users' Note for your implementation for any additional implementation-specific information.

9 Further Comments

None.

10 Example

None.