Sets the random number generators used to select random training patterns in stage I.

Namespace: Imsl.DataMining.Neural
Assembly: ImslCS (in ImslCS.dll) Version: 6.5.0.0

Syntax

C#
public virtual void SetRandomSamples(
	Random randomA,
	Random randomB
)
Visual Basic (Declaration)
Public Overridable Sub SetRandomSamples ( _
	randomA As Random, _
	randomB As Random _
)
Visual C++
public:
virtual void SetRandomSamples(
	Random^ randomA, 
	Random^ randomB
)

Parameters

randomA
Type: Imsl.Stat..::.Random
A Random object which is the first random number generator.
randomB
Type: Imsl.Stat..::.Random
A Random object which is the second random number generator, independent of randomA.

Remarks

The two random number generators should be independent.

See Also