Overload List

  NameDescription
DoubleComplexVector()()()
Undefined vector. Must be resized before using.
DoubleComplexVector(array<DoubleComplex>[]()[])
Constructs a DoubleComplexVector instance from the contents of the given array.
DoubleComplexVector(DoubleComplexVector)
Constructs a deep copy of a DoubleComplexVector.
DoubleComplexVector(Int32)
Constructs a DoubleComplexVector instance with the given length.
DoubleComplexVector(TextReader)
Constructs a DoubleComplexVector instance from the given text reader.
DoubleComplexVector(String)
Constructs a DoubleComplexVector instance from a given string representation.
DoubleComplexVector(DoubleVector, DoubleVector)
Constructs a DoubleComplexVector instance from a vector of real parts and a vector of imaginary parts.
DoubleComplexVector(array<DataRow>[]()[], array<DataRow>[]()[])
Constructs a DoubleComplexVector instance from two data row arrays. The real parts are specified with the first column of the first data row array, and the imaginary parts by the first column of the second data row array.
DoubleComplexVector(DataRowCollection, DataRowCollection)
Constructs a DoubleComplexVector instance from two data row collections. The real parts are specified with the first column of the first data row collection, and the imaginary parts by the first column of the second data row collection.
DoubleComplexVector(DataTable, DataTable)
Constructs a DoubleComplexVector instance from the data tables. The real parts are specified with the first column of the first data table, and the imaginary parts by the first column in the second data table.
DoubleComplexVector(DataView, DataView)
Constructs a DoubleComplexVector instance from the data views. The real parts are specified with the first column of the first data view, and the imaginary parts by the first column in the second data view.
DoubleComplexVector(Int32, DoubleComplex)
Constructs a DoubleComplexVector instance with the given length, and all values initialized to the given value.
DoubleComplexVector(Int32, FloatComplex)
Constructs a DoubleComplexVector instance with the given length, and all values initialized to the given value.
DoubleComplexVector(Int32, RandomNumberGenerator)
Constructs a DoubleComplexVector instance from a random number generator.
DoubleComplexVector(TextReader, NumberStyles)
Constructs a DoubleComplexVector instance from the given text reader using the specified style.
DoubleComplexVector(String, NumberStyles)
Returns a new DoubleComplexVector instance from a given string representation using the specified style.
DoubleComplexVector(Int32, DoubleComplex, DoubleComplex)
Constructs a DoubleComplexVector instance with the given length. Values are initialized starting with the given initial value, incremented by the specified amount for each element in the vector.

See Also