[in] | uplo | Specifies the part of the matrix A to be copied to B. = PlasmaUpperLower: All the matrix A = PlasmaUpper: Upper triangular part = PlasmaLower: Lower triangular part |
[in] | M | The number of rows of the matrix A. M >= 0. |
[in] | N | The number of columns of the matrix A. N >= 0. |
[in] | A | The M-by-N matrix A. If uplo = PlasmaUpper, only the upper trapezium is accessed; if UPLO = PlasmaLower, only the lower trapezium is accessed. |
[in] | LDA | The leading dimension of the array A. LDA >= max(1,M). |
[out] | B | The M-by-N matrix B. On exit, B = A in the locations specified by UPLO. |
[in] | LDB | The leading dimension of the array B. LDB >= max(1,M). |