Returns random value between min and max (inclusive).


Namespace: xpidea.neuro.net
Assembly: xpidea.neuro.net (in xpidea.neuro.net.dll)

Syntax

Visual Basic (Declaration)
Public Shared Function Random( _ 
   ByVal min As Double,  _ 
   ByVal max As Double _ 
) As Double
C#
public static double Random(
   double min,
   double max
)
C++
public:
 static double Random(
   double min,
   double max
)
J#
public static double Random(
   double min,
   double max
)
JScript
public static  function Random(
   min : double,
   max : double
) : double

Parameters

min
First value.
max
Second value.

See Also