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: Algs4NetAssembly: Algs4Net (in Algs4Net.dll) Version: 1.0.0.0 (1.0.0.0)
Syntaxpublic Vector(
params double[] a
)
Parameters
- a
- Type: SystemDouble
the array or vararg list
See Also