procedure SparseToDense(const Dst: TMtx; MaxElemCount: Integer);
Convert sparse matrix to banded matrix.
| # | Name | Type | Description |
|---|---|---|---|
| 1 | Dst | TMtx | |
| 2 | MaxElemCount | Integer |
Result: stored in self (calling object)
Remarks:
Convert sparse matrix modified compressed column format to dense matrix.
Examples
var A,B: TMtx;
SparseA: TSparseMtx;
// ...
A.SetIt(3,3,false,[1,0,0,0,2,0,0,1,3]);
See Also: TSparseMtx.DenseToSparse