LAPACK 3.3.1
Linear Algebra PACKage

clag2z.f

Go to the documentation of this file.
00001       SUBROUTINE CLAG2Z( M, N, SA, LDSA, A, LDA, INFO )
00002 *
00003 *  -- LAPACK PROTOTYPE auxiliary routine (version 3.3.1) --
00004 *  -- LAPACK is a software package provided by Univ. of Tennessee,    --
00005 *  -- Univ. of California Berkeley, Univ. of Colorado Denver and NAG Ltd..--
00006 *  -- April 2011                                                      --
00007 *
00008 *     ..
00009 *     .. Scalar Arguments ..
00010       INTEGER            INFO, LDA, LDSA, M, N
00011 *     ..
00012 *     .. Array Arguments ..
00013       COMPLEX            SA( LDSA, * )
00014       COMPLEX*16         A( LDA, * )
00015 *     ..
00016 *
00017 *  Purpose
00018 *  =======
00019 *
00020 *  CLAG2Z converts a COMPLEX matrix, SA, to a COMPLEX*16 matrix, A.
00021 *
00022 *  Note that while it is possible to overflow while converting
00023 *  from double to single, it is not possible to overflow when
00024 *  converting from single to double.
00025 *
00026 *  This is an auxiliary routine so there is no argument checking.
00027 *
00028 *  Arguments
00029 *  =========
00030 *
00031 *  M       (input) INTEGER
00032 *          The number of lines of the matrix A.  M >= 0.
00033 *
00034 *  N       (input) INTEGER
00035 *          The number of columns of the matrix A.  N >= 0.
00036 *
00037 *  SA      (input) COMPLEX array, dimension (LDSA,N)
00038 *          On entry, the M-by-N coefficient matrix SA.
00039 *
00040 *  LDSA    (input) INTEGER
00041 *          The leading dimension of the array SA.  LDSA >= max(1,M).
00042 *
00043 *  A       (output) COMPLEX*16 array, dimension (LDA,N)
00044 *          On exit, the M-by-N coefficient matrix A.
00045 *
00046 *  LDA     (input) INTEGER
00047 *          The leading dimension of the array A.  LDA >= max(1,M).
00048 *
00049 *  INFO    (output) INTEGER
00050 *          = 0:  successful exit
00051 *
00052 *  =====================================================================
00053 *
00054 *     .. Local Scalars ..
00055       INTEGER            I, J
00056 *     ..
00057 *     .. Executable Statements ..
00058 *
00059       INFO = 0
00060       DO 20 J = 1, N
00061          DO 10 I = 1, M
00062             A( I, J ) = SA( I, J )
00063    10    CONTINUE
00064    20 CONTINUE
00065       RETURN
00066 *
00067 *     End of CLAG2Z
00068 *
00069       END
 All Files Functions