Fills the given array of floats with random values.

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

Syntax

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

Parameters

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

Remarks

v must be initialized before calling this method.

See Also