Multiply the sparse matrix from right.
Multiply calling sparse matrix from right with dense matrix X and place the result in dense matrix Y.
Example 1
var a,b: Matrix;
ASparse: TMtxSparse;
//multiply sparse and dense matrix
ASparse.MulRight(a,b);
// result is stored in matrix b
Matrix a,b;
TMtxSparse *aSparse = new TMtxSparse();
aSparse->MulRight(a,b); // Result is stored in b
delete aSparse;
Declaration
Procedure MulRight(X, Y: TVec);
Description
Multiply sparse matrix from left with vector X and place the result in vector Y.