Overload List

  NameDescription
DoubleVector()()()
Undefined vector. Must be resized before using.
DoubleVector(DoubleVector)
Constructs a deep copy of a DoubleVector.
DoubleVector(array<DataRow>[]()[])
Constructs a DoubleVector instance whose values are derived from the first column of each of the rows in the double row array.
DoubleVector(DataRowCollection)
Constructs a DoubleVector instance whose values are derived from the first column of each of the rows in the data row collection.
DoubleVector(DataTable)
Constructs a DoubleVector instance whose values are derived from the first column of the given data table.
DoubleVector(DataView)
Constructs a DoubleVector instance whose values are derived from the first column of the given data view.
DoubleVector(array<Double>[]()[])
Constructs a DoubleVector instance from the contents of the given array.
DoubleVector(Int32)
Constructs a DoubleVector instance with the given length.
DoubleVector(TextReader)
Constructs a DoubleVector instance from the given text reader.
DoubleVector(String)
Constructs a DoubleVector instance from a given string representation.
DoubleVector(Int32, RandomNumberGenerator)
Constructs a DoubleVector instance from a random number generator.
DoubleVector(Int32, Double)
Constructs a DoubleVector instance with the given length, and all values initialized to the given value.
DoubleVector(Int32, Single)
Constructs a DoubleVector instance with the given length, and all values initialized to the given value.
DoubleVector(TextReader, NumberStyles)
Constructs a DoubleVector instance from a given text reader using the specified style.
DoubleVector(String, NumberStyles)
Returns a new DoubleVector instance from a given string representation using the specified style.
DoubleVector(DoubleDataBlock, Int32, Int32)
Constructs a DoubleVector instance with the specifed length, stride and referenced data.
DoubleVector(Int32, RandomNumberStream, IRandomNumberDistribution<(Of <(Double>)>))
Constructs a DoubleVector instance from a random number generator.
DoubleVector(Int32, Double, Double)
Constructs a DoubleVector 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