Mentions légales du service

Skip to content
Snippets Groups Projects
Commit b9f9ed8d authored by Mathieu Faverge's avatar Mathieu Faverge
Browse files

Merge branch 'trmm_doc' into 'master'

Fixed NRHS explanation and output dimensions at TRMM function documentation

See merge request !163
parents f9aa418b f47deeab
No related branches found
No related tags found
1 merge request!163Fixed NRHS explanation and output dimensions at TRMM function documentation
......@@ -57,7 +57,8 @@
* The order of the matrix A. N >= 0.
*
* @param[in] NRHS
* The number of right hand sides, i.e., the number of columns of the matrix B. NRHS >= 0.
* The number of right hand sides, i.e., the number of columns of the matrix B if side = ChamLeft or
* the number of rows of the matrix B if side = ChamRight. NRHS >= 0.
*
* @param[in] alpha
* alpha specifies the scalar alpha.
......@@ -75,7 +76,8 @@
*
* @param[in,out] B
* On entry, the N-by-NRHS right hand side matrix B.
* On exit, if return value = 0, the N-by-NRHS solution matrix X.
* On exit, if return value = 0, the N-by-NRHS solution matrix X if side = ChamLeft
* or the NRHS-by-N matrix X if side = ChamRight.
*
* @param[in] LDB
* The leading dimension of the array B. LDB >= max(1,N).
......
......@@ -58,7 +58,8 @@
* The order of the matrix A. N >= 0.
*
* @param[in] NRHS
* The number of right hand sides, i.e., the number of columns of the matrix B. NRHS >= 0.
* The number of right hand sides, i.e., the number of columns of the matrix B if side = ChamLeft or
* the number of rows of the matrix B if side = ChamRight. NRHS >= 0.
*
* @param[in] alpha
* alpha specifies the scalar alpha.
......@@ -76,7 +77,8 @@
*
* @param[in,out] B
* On entry, the N-by-NRHS right hand side matrix B.
* On exit, if return value = 0, the N-by-NRHS solution matrix X.
* On exit, if return value = 0, the N-by-NRHS solution matrix X if side = ChamLeft
* or the NRHS-by-N matrix X if side = ChamRight.
*
* @param[in] LDB
* The leading dimension of the array B. LDB >= max(1,N).
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment