RandomUniform(Int32, Double, Double, UInt32) Method
            Uniformly distributed random numbers.
            
Namespace: Metas.UncLib.Core.RandomGeneratorAssembly: Metas.UncLib.Core (in Metas.UncLib.Core.dll) Version: 2.9.9435.16862
public static double[] Uniform(
	int n,
	double a,
	double b,
	uint seed
)
Public Shared Function Uniform ( 
	n As Integer,
	a As Double,
	b As Double,
	seed As UInteger
) As Double()
public:
static array<double>^ Uniform(
	int n, 
	double a, 
	double b, 
	unsigned int seed
)
static member Uniform : 
        n : int * 
        a : float * 
        b : float * 
        seed : uint32 -> float[] 
- n  Int32
 - Number of Elements
 - a  Double
 - Lower Bound
 - b  Double
 - Upper Bound
 - seed  UInt32
 - Seed
 
Double