Mentions légales du service

Skip to content
Snippets Groups Projects
Commit f47deeab authored by BARROS DE ASSIS Lucas's avatar BARROS DE ASSIS Lucas Committed by Mathieu Faverge
Browse files

Fixed NRHS explanation and output dimensions at TRMM function documentation

parent f9aa418b
No related branches found
No related tags found
No related merge requests found
...@@ -57,7 +57,8 @@ ...@@ -57,7 +57,8 @@
* The order of the matrix A. N >= 0. * The order of the matrix A. N >= 0.
* *
* @param[in] NRHS * @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 * @param[in] alpha
* alpha specifies the scalar alpha. * alpha specifies the scalar alpha.
...@@ -75,7 +76,8 @@ ...@@ -75,7 +76,8 @@
* *
* @param[in,out] B * @param[in,out] B
* On entry, the N-by-NRHS right hand side matrix 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 * @param[in] LDB
* The leading dimension of the array B. LDB >= max(1,N). * The leading dimension of the array B. LDB >= max(1,N).
......
...@@ -58,7 +58,8 @@ ...@@ -58,7 +58,8 @@
* The order of the matrix A. N >= 0. * The order of the matrix A. N >= 0.
* *
* @param[in] NRHS * @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 * @param[in] alpha
* alpha specifies the scalar alpha. * alpha specifies the scalar alpha.
...@@ -76,7 +77,8 @@ ...@@ -76,7 +77,8 @@
* *
* @param[in,out] B * @param[in,out] B
* On entry, the N-by-NRHS right hand side matrix 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 * @param[in] LDB
* The leading dimension of the array B. LDB >= max(1,N). * 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