| VectorD Constructor (Int32, Double) |
Initializes a new instance of the
VectorD class.
Namespace: DigitalRune.Mathematics.AlgebraAssembly: DigitalRune.Mathematics (in DigitalRune.Mathematics.dll) Version: 1.14.0.0 (1.14.0.14427)
Syntax public VectorD(
int numberOfElements,
double value
)
Public Sub New (
numberOfElements As Integer,
value As Double
)
public:
VectorD(
int numberOfElements,
double value
)
new :
numberOfElements : int *
value : float -> VectorD
Parameters
- numberOfElements
- Type: SystemInt32
The number of elements. - value
- Type: SystemDouble
The initial value for the vector elements.
Remarks
All elements are set to value.
See Also