Gets the bandwidth of the matrix.

Namespace:  CenterSpace.NMath.Matrix
Assembly:  NMath (in NMath.dll) Version: 5.1.0.0

Syntax

C#
public int Bandwidth { get; }
Visual Basic (Declaration)
Public ReadOnly Property Bandwidth As Integer
Visual C++
public:
property int Bandwidth {
	int get ();
}

Remarks

This is the number of non-zero elements in each column and is equal to LowerBandwidth + UpperBandwidth + 1

See Also