Click or drag to resize

FloatComplexMatrixColStride Property

Gets the increment between successive elements in a column.

Namespace: CenterSpace.NMath.Core
Assembly: NMath (in NMath.dll) Version: 7.4
Syntax
public int ColStride { get; }

Property Value

Int32
Example
C#
FloatComplexMatrix A = new FloatComplexMatrix( 5, 5, 10.0 );
FloatComplexDataBlock matData = A.Data;
matData[0];           // A[0,0]
matData[A.ColStride]; // A[0,1]
matData[3*ColStride]; // A[0,3]
See Also