File: slaset.l

package info (click to toggle)
lapack 3.0.20000531a-28
  • links: PTS
  • area: main
  • in suites: sarge
  • size: 61,920 kB
  • ctags: 46,200
  • sloc: fortran: 584,835; perl: 8,226; makefile: 2,331; awk: 71; sh: 45
file content (58 lines) | stat: -rwxr-xr-x 1,533 bytes parent folder | download | duplicates (4)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
.TH SLASET l "15 June 2000" "LAPACK version 3.0" ")"
.SH NAME
SLASET - initialize an m-by-n matrix A to BETA on the diagonal and ALPHA on the offdiagonals
.SH SYNOPSIS
.TP 19
SUBROUTINE SLASET(
UPLO, M, N, ALPHA, BETA, A, LDA )
.TP 19
.ti +4
CHARACTER
UPLO
.TP 19
.ti +4
INTEGER
LDA, M, N
.TP 19
.ti +4
REAL
ALPHA, BETA
.TP 19
.ti +4
REAL
A( LDA, * )
.SH PURPOSE
SLASET initializes an m-by-n matrix A to BETA on the diagonal and ALPHA on the offdiagonals. 
.SH ARGUMENTS
.TP 8
UPLO    (input) CHARACTER*1
Specifies the part of the matrix A to be set.
= 'U':      Upper triangular part is set; the strictly lower
triangular part of A is not changed.
= 'L':      Lower triangular part is set; the strictly upper
triangular part of A is not changed.
Otherwise:  All of the matrix A is set.
.TP 8
M       (input) INTEGER
The number of rows of the matrix A.  M >= 0.
.TP 8
N       (input) INTEGER
The number of columns of the matrix A.  N >= 0.
.TP 8
ALPHA   (input) REAL
The constant to which the offdiagonal elements are to be set.
.TP 8
BETA    (input) REAL
The constant to which the diagonal elements are to be set.
.TP 8
A       (input/output) REAL array, dimension (LDA,N)
On exit, the leading m-by-n submatrix of A is set as follows:

if UPLO = 'U', A(i,j) = ALPHA, 1<=i<=j-1, 1<=j<=n,
if UPLO = 'L', A(i,j) = ALPHA, j+1<=i<=m, 1<=j<=n,
otherwise,     A(i,j) = ALPHA, 1<=i<=m, 1<=j<=n, i.ne.j,

and, for all UPLO, A(i,i) = BETA, 1<=i<=min(m,n).
.TP 8
LDA     (input) INTEGER
The leading dimension of the array A.  LDA >= max(1,M).