|
◆ zspr()
void zspr |
( |
char |
uplo, |
|
|
int |
n, |
|
|
doublecomplex |
alpha, |
|
|
doublecomplex |
x[], |
|
|
int |
incx, |
|
|
doublecomplex |
ap[] |
|
) |
| |
Rank 1 operation: A <- αxxT + A (complex symmetric matrices in packed form) (BLAS 2)
- Purpose
- This routine performs the symmetric rank 1 operation where alpha is a complex scalar, x is an n element vector and A is an n x n symmetric matrix, supplied in packed form.
- Parameters
-
[in] | uplo | Specifies whether the upper or lower triangular part of the matrix A is supplied in the packed array ap[] as follows:
= 'U': The upper triangular part of A is supplied in ap[].
= 'L': The lower triangular part of A is supplied in ap[]. |
[in] | n | Order of the matrix A. (n >= 0) (If n = 0, returns without computation) |
[in] | alpha | Scalar alpha. |
[in] | x[] | Array x[lx] (lx >= 1 + (n - 1)*abs(incx))
Vector x. |
[in] | incx | Storage spacing between elements of x. (incx != 0) |
[in,out] | ap[] | Array ap[lap] (lap >= n(n + 1)/2)
[in] n x n symmetric matrix A in packed form. (Upper or lower triangle)
[out] Output matrix in packed form. (= alpha*x*x^T + A) (Upper or lower triangle) |
- Reference
- BLAS
|