[]
Initializes a new instance of the Vector class.
public Vector()
Initializes a new instance of the Vector class.
public Vector(int dimension)
| Type | Name | Description |
|---|---|---|
| int | dimension | A int indicates the dimension of the vector. |
The dimension of the vector must be bigger than or equal zero.
Initializes a new instance of the Vector class.
public Vector(params double[] items)
| Type | Name | Description |
|---|---|---|
| double[] | items | A double array indicates the items. |