table of contents
other versions
- wheezy 3.4.1+dfsg-1+deb70u1
- jessie 3.5.0-4
- jessie-backports 3.7.0-1~bpo8+1
- testing 3.7.0-2
- unstable 3.7.0-2
claset.f(3) | LAPACK | claset.f(3) |
NAME¶
claset.f -SYNOPSIS¶
Functions/Subroutines¶
subroutine claset (UPLO, M, N, ALPHA, BETA, A, LDA)
Function/Subroutine Documentation¶
subroutine claset (characterUPLO, integerM, integerN, complexALPHA, complexBETA, complex, dimension( lda, * )A, integerLDA)¶
CLASET Purpose:CLASET initializes a 2-D array A to BETA on the diagonal and ALPHA on the offdiagonals.
UPLO
M
N
ALPHA
BETA
A
LDA
Author:
UPLO is CHARACTER*1 Specifies the part of the matrix A to be set. = 'U': Upper triangular part is set. The lower triangle is unchanged. = 'L': Lower triangular part is set. The upper triangle is unchanged. Otherwise: All of the matrix A is set.
M is INTEGER On entry, M specifies the number of rows of A.
N is INTEGER On entry, N specifies the number of columns of A.
ALPHA is COMPLEX All the offdiagonal array elements are set to ALPHA.
BETA is COMPLEX All the diagonal array elements are set to BETA.
A is COMPLEX array, dimension (LDA,N) On entry, the m by n matrix A. On exit, A(i,j) = ALPHA, 1 <= i <= m, 1 <= j <= n, i.ne.j; A(i,i) = BETA , 1 <= i <= min(m,n)
LDA is INTEGER The leading dimension of the array A. LDA >= max(1,M).
Univ. of Tennessee
Univ. of California Berkeley
Univ. of Colorado Denver
NAG Ltd.
Date:
November 2011
Author¶
Generated automatically by Doxygen for LAPACK from the source code.Sun May 26 2013 | Version 3.4.1 |