Click or drag to resize

DoubleComplexMatrixColStride 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#
DoubleComplexMatrix A = new DoubleComplexMatrix( 5, 5, 10.0 );
DoubleComplexDataBlock matData = A.Data;
matData[0];           // A[0,0]
matData[A.ColStride]; // A[0,1]
matData[3*ColStride]; // A[0,3]
See Also