You are here: Symbol Reference > Sparse Namespace > Classes > TSparseMtx Class > public > MulRight Method > TSparseMtx.MulRight Method (TMtx, TMtx)
MtxVec VCL
ContentsIndex
Example
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;
Copyright (c) 1999-2025 by Dew Research. All rights reserved.