Dew MtxVec NET
TSparseMtx.Rows Property
Summary
Number of rows in the sparse matrix.

Class
TSparseMtx

Declaration
Property Rows: integer read FRows write SetRows;
Description
Defines number of rows in the sparse matrix. This value is needed only by the routines for matrix addition and multiplication to check the matrix sizes (which can be non-rectangular).
 See Also 
Cols 

Example 1

SparseA.Complex := false; SparseA.Rows := 3; SparseA.Cols := 4; SparseA.NonZeros := 5;
SparseA->Complex = false; SparseA->Rows = 3; SparseA->Cols = 4; SparseA->NonZeros = 5;
SparseA.Complex = false; SparseA.Rows = 3; SparseA.Cols = 4; SparseA.NonZeros = 5;

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