Click or drag to resize

FloatDataBlock Class

The FloatDataBlock struct defines a contiguous subset of an array of floating point numbers. A FloatDataBlock instance contains a reference to an array, and an offset into the array.
Inheritance Hierarchy
SystemObject
  CenterSpace.NMath.CoreFloatDataBlock

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

The FloatDataBlock type exposes the following members.

Constructors
 NameDescription
Public methodFloatDataBlock Default constructor.
Public methodFloatDataBlock(Int32) Constructs a data block that references a new array of the specified length.
Public methodFloatDataBlock(FloatDataBlock, Int32) Constructs a data block that references elements in the same array as the supplied FloatDataBlock instance, incrementing the offset into the array by the given amount.
Public methodFloatDataBlock(Single, Int32) Constructs a data block that references the elements in a given array, beginning from the specified offset into the array.
Top
Properties
 NameDescription
Public propertyData The array referenced by this data block.
Public propertyItem Custom indexer for the FloatDataBlock 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