| | Name | Description |
|---|
 | DVector(Double) | Initializes a vector from an array. |
 | DVector(DVector) | Creates a vector by concatenating many vectors. |
 | DVector(Int32) | Creates a vector of a given size. |
 | DVector(Csv, Int32) |
Creates a vector by reading a column from a CSV file. The column is identified by its name.
|
 | DVector(Csv, String) |
Creates a vector by reading a column from a CSV file. The column is identified by its name.
|
 | DVector(Double, DVector) | Creates a vector by concatenating a new value with a suffix vector. |
 | DVector(DVector, DVector) | Creates a vector by concatenating two vectors. |
 | DVector(DVector, Double) | Creates a vector by concatenating a prefix vector with a new value. |
 | DVector(Int32, NormalRandom) | Creates a vector filled with a normal distribution generator. |
 | DVector(Int32, Double) | Initializes a vector from a scalar. |
 | DVector(Int32, FuncInt32, DVector, Double) | Creates a vector using a formula to fill its items. |
 | DVector(Int32, FuncInt32, Double) | Creates a vector using a formula to fill its items. |
 | DVector(Int32, Random) | Creates a vector filled with a uniform distribution generator. |
 | DVector(Int32, Random, Double, Double) | Creates a vector filled with a uniform distribution generator. |