XLPack 7.0
XLPack Numerical Library (C API) Reference Manual
Loading...
Searching...
No Matches

◆ zher()

void zher ( char  uplo,
int  n,
double  alpha,
doublecomplex  x[],
int  incx,
int  lda,
doublecomplex  a[] 
)

Rank 1 operation: A <- αxxH + A (Hermitian matrices) (BLAS 2)

Purpose
This routine performs the Hermitian rank 1 operation
A <- alpha*x*x^H + A
where alpha is a real scalar, x is an n element vector and A is an n x n Hermitian matrix.
Parameters
[in]uploSpecifies whether the upper or lower triangular part of the array a[][] is to be referenced as follows:
= 'U': Only the upper triangular part of a[][] is to be referenced.
= 'L': Only the lower triangular part of a[][] is to be referenced.
[in]nOrder of the matrix A. (n >= 0) (If n = 0, returns without computation)
[in]alphaScalar alpha.
[in]x[]Array x[lx] (lx >= 1 + (n - 1)*abs(incx))
Vector x.
[in]incxStorage spacing between elements of x. (incx != 0)
[in]ldaLeading dimension of the two dimensional array a[][]. (lda >= max(1, n))
[in,out]a[][]Array a[la][lda] (la >= n)
[in] n x n Hermitian matrix A. According to uplo, only upper or lower triangular part is to be referenced. The imaginary parts of the diagonal elements need not be set and are assumed to be zero.
[out] Output matrix (= alpha*x*x^H + A). According to uplo, only upper or lower triangular part is overwritten. The imaginary parts of the diagonal elements are set to zero.
Reference
BLAS