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