40-MPCR TRSM | R Documentation |
Solves a triangular matrix equation.
performs:
op(A)*X=alpha*B
X*op(A)=alpha*B
## S4 method for signature 'Rcpp_MPCR'
MPCR.trsm(a,b,upper_triangle,transpose,side = 'L',alpha =1)
a |
MPCR Matrix A. |
b |
MPCR Matrix B. |
upper_triangle |
If the value is TRUE, the referenced part of matrix A corresponds to the upper triangle, with the opposite triangle assumed to contain zeros. |
transpose |
If TRUE, the transpose of A is used. |
side |
'R for Right side, 'L' for Left side. |
alpha |
Factor used for A, If alpha is zero, A is not accessed. |
An MPCR Matrix.
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.