Click or drag to resize

DoubleComplexDataBlock Class

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

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

The DoubleComplexDataBlock type exposes the following members.

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