PLASMA  2.8.0
PLASMA - Parallel Linear Algebra for Scalable Multi-core Architectures
int CORE_dlag2z ( int  m,
int  n,
const double *  R,
int  ldr,
PLASMA_Complex64_t *  Z,
int  ldz 
)

CORE_dlag2z - Copy a real matrix R into the real part of a complex matrix Z

Parameters
[in]mm specifies the number of rows of the matrices R and Z.
[in]nn specifies the number of columns of the matrices R and Z.
[in]RR contains the real coefficient to be copied into the complex matrix. R is of size ldr -by- n.
[in]ldrldr specifies the leading dimension of R. ldr >= max(1,m).
[out]ZOn exit, the real part of the values of Z will be set to the ones stored in R, and the imaginary part set to 0. Z is of size ldz -by- n.
[in]ldzldz specifies the leading dimension of Z. ldz >= max(1,m).
Returns
Return values
PLASMA_SUCCESSsuccessful exit
<0if -i, the i-th argument had an illegal value