Click or drag to resize

DoubleDataBlock Class

The DoubleDataBlock struct defines a contiguous subset of an array of double-precision floating point numbers. A DoubleDataBlock instance contains a reference to an array and an offset into the array.
Inheritance Hierarchy
SystemObject
  CenterSpace.NMath.CoreDoubleDataBlock

Namespace: CenterSpace.NMath.Core
Assembly: NMath (in NMath.dll) Version: 7.4
Syntax
[SerializableAttribute]
public class DoubleDataBlock

The DoubleDataBlock type exposes the following members.

Constructors
 NameDescription
Public methodDoubleDataBlock Default constructor.
Public methodDoubleDataBlock(Int32) Constructs a data block that references a new array of the specified length.
Public methodDoubleDataBlock(Double, Int32) Constructs a data block that references the elements in a given array, beginning from the specified offset into the array.
Public methodDoubleDataBlock(DoubleDataBlock, Int32) Constructs a data block that references elements in the same array as the supplied DoubleDataBlock instance, incrementing the offset into the array by the given amount.
Top
Properties
 NameDescription
Public propertyData The array referenced by this data block.
Public propertyItem Custom indexer for the DoubleDataBlock struct.
Public propertyLength The number of elements reference by this data block.
Public propertyOffset The current offset into the array referenced by this data block.
Top
See Also