Overload List

  NameDescription
FloatComplexVector()()()
Undefined vector. Must be resized before using.
FloatComplexVector(array<FloatComplex>[]()[])
Constructs a FloatComplexVector instance from the contents of the given array.
FloatComplexVector(FloatComplexVector)
Constructs a deep copy of a FloatComplexVector.
FloatComplexVector(Int32)
Constructs a FloatComplexVector instance with the given length.
FloatComplexVector(TextReader)
Constructs a FloatComplexVector instance from the given text reader.
FloatComplexVector(String)
Constructs a FloatComplexVector instance from a given string representation.
FloatComplexVector(FloatVector, FloatVector)
Constructs a FloatComplexVector instance from a vector of real parts and a vector of imaginary parts.
FloatComplexVector(array<DataRow>[]()[], array<DataRow>[]()[])
Constructs a FloatComplexVector 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.
FloatComplexVector(DataRowCollection, DataRowCollection)
Constructs a FloatComplexVector 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.
FloatComplexVector(DataTable, DataTable)
Constructs a FloatComplexVector 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.
FloatComplexVector(DataView, DataView)
Constructs a FloatComplexVector 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.
FloatComplexVector(Int32, FloatComplex)
Constructs a FloatComplexVector instance with the given length, and all values initialized to the given value.
FloatComplexVector(Int32, RandomNumberGenerator)
Constructs a FloatComplexVector instance from a random number generator.
FloatComplexVector(TextReader, NumberStyles)
Constructs a FloatComplexVector instance from the given text reader using the specified style.
FloatComplexVector(String, NumberStyles)
Returns a new FloatComplexVector instance from a given string representation using the specified style.
FloatComplexVector(Int32, FloatComplex, FloatComplex)
Constructs a FloatComplexVector 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