lauu2#
Functions
-
void slauu2(const char *uplo, const INT n, f32 *restrict A, const INT lda, INT *info)#
SLAUU2 computes the product U * U**T or L**T * L, where the triangular factor U or L is stored in the upper or lower triangular part of the array A.
If UPLO = ‘U’ or ‘u’ then the upper triangle of the result is stored, overwriting the factor U in A. If UPLO = ‘L’ or ‘l’ then the lower triangle of the result is stored, overwriting the factor L in A.
This is the unblocked form of the algorithm, calling Level 2 BLAS.
Parameters
inuploSpecifies whether the triangular factor stored in the array A is upper or lower triangular: = ‘U’: Upper triangular = ‘L’: Lower triangular
innThe order of the triangular factor U or L. n >= 0.
inoutADouble precision array, dimension (lda, n). On entry, the triangular factor U or L. On exit, if UPLO = ‘U’, the upper triangle of A is overwritten with the upper triangle of the product U * U**T; if UPLO = ‘L’, the lower triangle of A is overwritten with the lower triangle of the product L**T * L.
inldaThe leading dimension of the array A. lda >= max(1, n).
outinfo= 0: successful exit
< 0: if info = -k, the k-th argument had an illegal value
void slauu2(
const char* uplo,
const INT n,
f32* restrict A,
const INT lda,
INT* info
);
Functions
-
void dlauu2(const char *uplo, const INT n, f64 *restrict A, const INT lda, INT *info)#
DLAUU2 computes the product U * U**T or L**T * L, where the triangular factor U or L is stored in the upper or lower triangular part of the array A.
If UPLO = ‘U’ or ‘u’ then the upper triangle of the result is stored, overwriting the factor U in A. If UPLO = ‘L’ or ‘l’ then the lower triangle of the result is stored, overwriting the factor L in A.
This is the unblocked form of the algorithm, calling Level 2 BLAS.
Parameters
inuploSpecifies whether the triangular factor stored in the array A is upper or lower triangular: = ‘U’: Upper triangular = ‘L’: Lower triangular
innThe order of the triangular factor U or L. n >= 0.
inoutADouble precision array, dimension (lda, n). On entry, the triangular factor U or L. On exit, if UPLO = ‘U’, the upper triangle of A is overwritten with the upper triangle of the product U * U**T; if UPLO = ‘L’, the lower triangle of A is overwritten with the lower triangle of the product L**T * L.
inldaThe leading dimension of the array A. lda >= max(1, n).
outinfo= 0: successful exit
< 0: if info = -k, the k-th argument had an illegal value
void dlauu2(
const char* uplo,
const INT n,
f64* restrict A,
const INT lda,
INT* info
);
Functions
-
void clauu2(const char *uplo, const INT n, c64 *restrict A, const INT lda, INT *info)#
CLAUU2 computes the product U * U**H or L**H * L, where the triangular factor U or L is stored in the upper or lower triangular part of the array A.
If UPLO = ‘U’ or ‘u’ then the upper triangle of the result is stored, overwriting the factor U in A. If UPLO = ‘L’ or ‘l’ then the lower triangle of the result is stored, overwriting the factor L in A.
This is the unblocked form of the algorithm, calling Level 2 BLAS.
Parameters
inuploSpecifies whether the triangular factor stored in the array A is upper or lower triangular: = ‘U’: Upper triangular = ‘L’: Lower triangular
innThe order of the triangular factor U or L. n >= 0.
inoutAComplex*16 array, dimension (lda, n). On entry, the triangular factor U or L. On exit, if UPLO = ‘U’, the upper triangle of A is overwritten with the upper triangle of the product U * U**H; if UPLO = ‘L’, the lower triangle of A is overwritten with the lower triangle of the product L**H * L.
inldaThe leading dimension of the array A. lda >= max(1, n).
outinfo= 0: successful exit
< 0: if info = -k, the k-th argument had an illegal value
void clauu2(
const char* uplo,
const INT n,
c64* restrict A,
const INT lda,
INT* info
);
Functions
-
void zlauu2(const char *uplo, const INT n, c128 *restrict A, const INT lda, INT *info)#
ZLAUU2 computes the product U * U**H or L**H * L, where the triangular factor U or L is stored in the upper or lower triangular part of the array A.
If UPLO = ‘U’ or ‘u’ then the upper triangle of the result is stored, overwriting the factor U in A. If UPLO = ‘L’ or ‘l’ then the lower triangle of the result is stored, overwriting the factor L in A.
This is the unblocked form of the algorithm, calling Level 2 BLAS.
Parameters
inuploSpecifies whether the triangular factor stored in the array A is upper or lower triangular: = ‘U’: Upper triangular = ‘L’: Lower triangular
innThe order of the triangular factor U or L. n >= 0.
inoutAComplex*16 array, dimension (lda, n). On entry, the triangular factor U or L. On exit, if UPLO = ‘U’, the upper triangle of A is overwritten with the upper triangle of the product U * U**H; if UPLO = ‘L’, the lower triangle of A is overwritten with the lower triangle of the product L**H * L.
inldaThe leading dimension of the array A. lda >= max(1, n).
outinfo= 0: successful exit
< 0: if info = -k, the k-th argument had an illegal value
void zlauu2(
const char* uplo,
const INT n,
c128* restrict A,
const INT lda,
INT* info
);