Click or drag to resize

FloatComplexDataBlock Class

The FloatComplexDataBlock struct defines a contiguous subset of an array of FloatComplex numbers. A FloatComplexDataBlock instance contains a reference to an array and an offset into the array.
Inheritance Hierarchy
SystemObject
  CenterSpace.NMath.CoreFloatComplexDataBlock

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

The FloatComplexDataBlock type exposes the following members.

Constructors
 NameDescription
Public methodFloatComplexDataBlock Default constructor.
Public methodFloatComplexDataBlock(Int32) Constructs a data block that references a new array of of the specified length.
Public methodFloatComplexDataBlock(FloatComplex, Int32) Constructs a data block that references the elements in a given array, beginning from the specified offset into the array.
Public methodFloatComplexDataBlock(FloatComplexDataBlock, Int32) Constructs a data block that references elements in the same array as the supplied FloatComplexDataBlock 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 FloatComplexDataBlock 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