Click or drag to resize
Vector Constructor (Double)
Initializes a vector from either an array or a vararg list. The vararg syntax supports a constructor that takes a variable number of arugments such as Vector x = new Vector(1.0, 2.0, 3.0, 4.0).

Namespace: Algs4Net
Assembly: Algs4Net (in Algs4Net.dll) Version: 1.0.0.0 (1.0.0.0)
Syntax
C#
public Vector(
	params double[] a
)

Parameters

a
Type: SystemDouble
the array or vararg list
See Also