Gets a reference to the underly data that this matrix is viewing.
Namespace:
CenterSpace.NMath.CoreAssembly: NMath (in NMath.dll) Version: 5.1.0.0
Syntax
| C# |
|---|
public DoubleComplexDataBlock DataBlock { get; } |
| Visual Basic (Declaration) |
|---|
Public ReadOnly Property DataBlock As DoubleComplexDataBlock |
| Visual C++ |
|---|
public: property DoubleComplexDataBlock^ DataBlock { DoubleComplexDataBlock^ get (); } |
Remarks
Other objects may be using this data. Use with caution.
A pointer to the array of DoubleComplex instances may by obtained as follows:
CopyC#
A pointer to the array of DoubleComplex instances may by obtained as follows:
DoubleComplexDataBlock block = matrix.DataBlock.data; DoubleComplex *pData = &(block.Data[block.Offset]);