 | RandGenMTwistFill(Int32, Int32) Method |
Fills the given array of integers with random values.
Namespace: CenterSpace.NMath.CoreAssembly: NMath (in NMath.dll) Version: 7.4
Syntaxpublic void Fill(
int[] v,
int maxValue
)
Public Sub Fill (
v As Integer(),
maxValue As Integer
)
public:
void Fill(
array<int>^ v,
int maxValue
)
member Fill :
v : int[] *
maxValue : int -> unit
Parameters
- v Int32
- An array.
- maxValue Int32
- The maximum value. Must be greater than zero.
Remarksv must be initialized before calling this method.
See Also