MPCRTrsm: MPCR TRSM (Triangular Solve)

40-MPCR TRSMR Documentation

MPCR TRSM (Triangular Solve)

Description

Solves a triangular matrix equation.
performs:
op(A)*X=alpha*B
X*op(A)=alpha*B

Usage


## S4 method for signature 'Rcpp_MPCR'
MPCR.trsm(a,b,upper_triangle,transpose,side = 'L',alpha =1)
   

Arguments

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.

Value

An MPCR Matrix.


MPCR documentation built on April 13, 2025, 5:08 p.m.

Related to MPCRTrsm in MPCR...