Dew MtxVec NET
TSparseMtx.MulRight Methods
Summary
Multiply the sparse matrix from right.

Class
TSparseMtx

Declaration
Procedure MulRight(X, Y: TMtx);

Description
Multiply calling sparse matrix from right with dense matrix X and place the result in dense matrix Y.
 See Also 
MulLeft 

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.

Copyright 2008 Dew Research
http://www.dewresearch.com