Visible to Intel only — GUID: GUID-46B4933C-6EE4-40D4-AD99-AE0F32E84ECE
Visible to Intel only — GUID: GUID-46B4933C-6EE4-40D4-AD99-AE0F32E84ECE
cblas_?her
Performs a rank-1 update of a Hermitian matrix.
Syntax
void cblas_cher (const CBLAS_LAYOUT Layout, const CBLAS_UPLO uplo, const MKL_INT n, const float alpha, const void *x, const MKL_INT incx, void *a, const MKL_INT lda);
void cblas_zher (const CBLAS_LAYOUT Layout, const CBLAS_UPLO uplo, const MKL_INT n, const double alpha, const void *x, const MKL_INT incx, void *a, const MKL_INT lda);
Include Files
- mkl.h
Description
The ?her routines perform a matrix-vector operation defined as
A := alpha*x*conjg(x') + A,
where:
alpha is a real scalar,
x is an n-element vector,
A is an n-by-n Hermitian matrix.
Input Parameters
- Layout
-
Specifies whether two-dimensional array storage is row-major (CblasRowMajor) or column-major (CblasColMajor).
- uplo
-
Specifies whether the upper or lower triangular part of the array a is used.
If uplo = CblasUpper, then the upper triangular of the array a is used.
If uplo = CblasLower, then the low triangular of the array a is used.
- n
-
Specifies the order of the matrix A. The value of n must be at least zero.
- alpha
-
Specifies the scalar alpha.
- x
-
Array, dimension at least (1 + (n - 1)*abs(incx)). Before entry, the incremented array x must contain the n-element vector x.
- incx
-
Specifies the increment for the elements of x.
The value of incx must not be zero.
- a
-
Array, size lda*n.
Before entry with uplo = CblasUpper, the leading n-by-n upper triangular part of the array a must contain the upper triangular part of the Hermitian matrix and the strictly lower triangular part of a is not referenced.
Before entry with uplo = CblasLower, the leading n-by-n lower triangular part of the array a must contain the lower triangular part of the Hermitian matrix and the strictly upper triangular part of a is not referenced.
The imaginary parts of the diagonal elements need not be set and are assumed to be zero.
- lda
-
Specifies the leading dimension of a as declared in the calling (sub)program. The value of lda must be at least max(1, n).
Output Parameters
- a
-
With uplo = CblasUpper, the upper triangular part of the array a is overwritten by the upper triangular part of the updated matrix.
With uplo = CblasLower, the lower triangular part of the array a is overwritten by the lower triangular part of the updated matrix.
If alpha is zero, matrix A is unchanged; otherwise, the imaginary parts of the diagonal elements are set to zero.