Gets the increment between successive elements in a row.

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

Syntax

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

Examples

CopyC#
FloatComplexMatrix A = new FloatComplexMatrix( 5, 5, 10.0 );
FloatComplexDataBlock matData = A.Data;
matData[0];           // A[0,0]
matData[A.RowStride]; // A[1,0]
matData[3*RowStride]; // A[3,0]

See Also