.NET Matrix Library
GrowFactor Property
See Also  Send Feedback



Gets or sets the number by which the Capacity is multiplied whenever a greater internal storage for the matrix is needed.

Syntax

Visual Basic (Declaration) 
Public Property GrowFactor As Single
Visual Basic (Usage)Copy Code
Dim instance As CSparseMatrix
Dim value As Single
 
instance.GrowFactor = value
 
value = instance.GrowFactor
C# 
public float GrowFactor {get; set;}
C++/CLI 
public:
property float GrowFactor {
   float get();
   void set (    float value);
}

Property Value

A float value.
A float value.

Remarks

If GrowFactor property equals 2, then Capacity is doubled whenever a greater internal storage for the sparse matrix is needed. The default value is 1.2. Valid values are between 1 and 4.

Requirements

Target Platforms: Windows 2000, Windows XP, Windows Server 2003 family, Windows Vista, Windows Server 2008 family, Windows 7

See Also

.NET Matrix Library