1CLAG2Z ‐ a COMPLEX SINGLE PRECISION matrix, SA, to a COMPLEX DOU‐
2BLE PRECISION matrix, A SUBROUTINE CLAG2Z( M,  N,  SA,  LDSA,  A,
3LDA, INFO)
4    INTEGER INFO,LDA,LDSA,M,N
5    COMPLEX SA(LDSA,*)
6    COMPLEX*16  A(LDA,*)  CLAG2Z converts a COMPLEX SINGLE PRECI‐
7SION matrix, SA, to a COMPLEX DOUBLE PRECISION matrix, A.
8
9Note that while it is possible to overflow while converting  from
10double  to single, it is not possible to overflow when converting
11from single to double.
12
13This is a helper routine so there is no argument checking.
14
15M       (input) INTEGER The number of lines of the matrix  A.   M
16>=  0.   N       (input) INTEGER The number of columns of the ma‐
17trix A.  N >= 0.  SA      (output) REAL array, dimension (LDSA,N)
18On exit, the M‐by‐N coefficient matrix SA.  LDSA    (input) INTE‐
19GER The leading dimension of the array SA.  LDSA >= max(1,M).   A
20(input)  DOUBLE  PRECISION array, dimension (LDA,N) On entry, the
21M‐by‐N coefficient matrix A.  LDA     (input) INTEGER The leading
22dimension of the array A.  LDA >= max(1,M).  INFO    (output) IN‐
23TEGER = 0:  successful exit =========
24
25
26
27End of CLAG2Z
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
59
60
61
62
63
64
65
66
Impressum