lag2d#
Functions
-
void slag2d(const INT m, const INT n, const f32 *restrict SA, const INT ldsa, double *restrict A, const INT lda, INT *info)#
SLAG2D converts a SINGLE PRECISION matrix, SA, to a DOUBLE PRECISION matrix, A.
Note that while it is possible to overflow while converting from double to single, it is not possible to overflow when converting from single to double.
This is an auxiliary routine so there is no argument checking.
Parameters
inmThe number of lines of the matrix A. m >= 0.
innThe number of columns of the matrix A. n >= 0.
inSAReal (single precision) array, dimension (ldsa, n). On entry, the M-by-N coefficient matrix SA.
inldsaThe leading dimension of the array SA. ldsa >= max(1, m).
outADouble precision array, dimension (lda, n). On exit, the M-by-N coefficient matrix A.
inldaThe leading dimension of the array A. lda >= max(1, m).
outinfoExit status:
= 0: successful exit (always succeeds).
void slag2d(
const INT m,
const INT n,
const f32* restrict SA,
const INT ldsa,
double* restrict A,
const INT lda,
INT* info
);