 | DoubleVectorDataBlock Property |
Gets a reference to the underlying data that this vector is viewing.
Namespace: CenterSpace.NMath.CoreAssembly: NMath (in NMath.dll) Version: 7.4
Syntaxpublic DoubleDataBlock DataBlock { get; set; }
Public Property DataBlock As DoubleDataBlock
Get
Set
public:
property DoubleDataBlock^ DataBlock {
DoubleDataBlock^ get ();
void set (DoubleDataBlock^ value);
}
member DataBlock : DoubleDataBlock with get, set
Property Value
DoubleDataBlock
Remarks
Other objects may be using this data. Use with caution.
A pointer to the array of doubles may by obtained as follows:
DoubleDataBlock block = vector.DataBlock;
double *pData = &(block.Data[block.Offset]);
See Also