Fills the given array of integers with random values.

Namespace:  CenterSpace.NMath.Core
Assembly:  NMath (in NMath.dll) Version: 5.1.0.0

Syntax

C#
public void Fill(
	int[] v
)
Visual Basic (Declaration)
Public Sub Fill ( _
	v As Integer() _
)
Visual C++
public:
void Fill(
	array<int>^ v
)

Parameters

v
Type: array< System..::.Int32 >[]()[]
An array.

Remarks

v must be initialized before calling this method.

See Also