Click or drag to resize

DoubleComplexMatrixDataBlock Property

Gets a reference to the underly data that this matrix is viewing.

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

Property Value

DoubleComplexDataBlock
Remarks
Other objects may be using this data. Use with caution.
A pointer to the array of DoubleComplex instances may by obtained as follows:
C#
DoubleComplexDataBlock block = matrix.DataBlock.data;
DoubleComplex *pData = &(block.Data[block.Offset]);
See Also