Click or drag to resize

FloatMatrixDataBlock 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 FloatDataBlock DataBlock { get; set; }

Property Value

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