 | DoubleVector(Int32, Single) Constructor |
Constructs a DoubleVector instance with the given length, and all
values initialized to the given value.
Namespace: CenterSpace.NMath.CoreAssembly: NMath (in NMath.dll) Version: 7.4
Syntaxpublic DoubleVector(
int length,
float initVal
)
Public Sub New (
length As Integer,
initVal As Single
)
public:
DoubleVector(
int length,
float initVal
)
new :
length : int *
initVal : float32 -> DoubleVector
Parameters
- length Int32
- A non-negative value for the length.
- initVal Single
- An initial value. Implicitly converted to a double.
See Also