1SLAG2D(1) LAPACK PROTOTYPE auxiliary routine (version 3.1.2) SLAG2D(1)
2
3
4
6 SLAG2D - converts a SINGLE PRECISION matrix, SA, to a DOUBLE PRECISION
7 matrix, A
8
10 SUBROUTINE SLAG2D( M, N, SA, LDSA, A, LDA, INFO )
11
12 INTEGER INFO, LDA, LDSA, M, N
13
14 REAL SA( LDSA, * )
15
16 DOUBLE PRECISION A( LDA, * )
17
19 SLAG2D converts a SINGLE PRECISION matrix, SA, to a DOUBLE PRECISION
20 matrix, A. Note that while it is possible to overflow while converting
21 from double to single, it is not possible to overflow when converting
22 from single to double.
23 This is an auxiliary routine so there is no argument checking.
24
26 M (input) INTEGER
27 The number of lines of the matrix A. M >= 0.
28
29 N (input) INTEGER
30 The number of columns of the matrix A. N >= 0.
31
32 SA (input) REAL array, dimension (LDSA,N)
33 On entry, the M-by-N coefficient matrix SA.
34
35 LDSA (input) INTEGER
36 The leading dimension of the array SA. LDSA >= max(1,M).
37
38 A (output) DOUBLE PRECISION array, dimension (LDA,N)
39 On exit, the M-by-N coefficient matrix A.
40
41 LDA (input) INTEGER
42 The leading dimension of the array A. LDA >= max(1,M).
43
44 INFO (output) INTEGER
45 = 0: successful exit ========= End of SLAG2D
46
47
48
49 LAPACK PROTOTYPE auxiliary routinNeov(evmebresrio2n0038.1.2) SLAG2D(1)