[]
        
(Showing Draft Content)

C1.Framework.Mathematics.Vector.-ctor

Vector Constructor

Vector()

Initializes a new instance of the Vector class.

Declaration
public Vector()

Vector(int)

Initializes a new instance of the Vector class.

Declaration
public Vector(int dimension)
Parameters
Type Name Description
int dimension

A int indicates the dimension of the vector.

Remarks

The dimension of the vector must be bigger than or equal zero.

Vector(params double[])

Initializes a new instance of the Vector class.

Declaration
public Vector(params double[] items)
Parameters
Type Name Description
double[] items

A double array indicates the items.