Subroutine */
| 9115 | } /* zlacp2_ */ |
| 9116 | |
| 9117 | /* Subroutine */ int zlacpy_(char *uplo, integer *m, integer *n, |
| 9118 | doublecomplex *a, integer *lda, doublecomplex *b, integer *ldb) |
| 9119 | { |
| 9120 | /* System generated locals */ |
| 9121 | integer a_dim1, a_offset, b_dim1, b_offset, i__1, i__2, i__3, i__4; |
| 9122 | |
| 9123 | /* Local variables */ |
| 9124 | static integer i__, j; |
| 9125 | extern logical lsame_(char *, char *); |
| 9126 | |
| 9127 | |
| 9128 | /* |
| 9129 | -- LAPACK auxiliary routine (version 3.2) -- |
| 9130 | -- LAPACK is a software package provided by Univ. of Tennessee, -- |
| 9131 | -- Univ. of California Berkeley, Univ. of Colorado Denver and NAG Ltd..-- |
| 9132 | November 2006 |
| 9133 | |
| 9134 | |
| 9135 | Purpose |
| 9136 | ======= |
| 9137 | |
| 9138 | ZLACPY copies all or part of a two-dimensional matrix A to another |
| 9139 | matrix B. |
| 9140 | |
| 9141 | Arguments |
| 9142 | ========= |
| 9143 | |
| 9144 | UPLO (input) CHARACTER*1 |
| 9145 | Specifies the part of the matrix A to be copied to B. |
| 9146 | = 'U': Upper triangular part |
| 9147 | = 'L': Lower triangular part |
| 9148 | Otherwise: All of the matrix A |
| 9149 | |
| 9150 | M (input) INTEGER |
| 9151 | The number of rows of the matrix A. M >= 0. |
| 9152 | |
| 9153 | N (input) INTEGER |
| 9154 | The number of columns of the matrix A. N >= 0. |
| 9155 | |
| 9156 | A (input) COMPLEX*16 array, dimension (LDA,N) |
| 9157 | The m by n matrix A. If UPLO = 'U', only the upper trapezium |
| 9158 | is accessed; if UPLO = 'L', only the lower trapezium is |
| 9159 | accessed. |
| 9160 | |
| 9161 | LDA (input) INTEGER |
| 9162 | The leading dimension of the array A. LDA >= max(1,M). |
| 9163 | |
| 9164 | B (output) COMPLEX*16 array, dimension (LDB,N) |
| 9165 | On exit, B = A in the locations specified by UPLO. |
| 9166 | |
| 9167 | LDB (input) INTEGER |
| 9168 | The leading dimension of the array B. LDB >= max(1,M). |
| 9169 | |
| 9170 | ===================================================================== |
| 9171 | */ |
| 9172 | |
| 9173 | |
| 9174 | /* Parameter adjustments */ |
no test coverage detected