public void Uniform(
int sampleSize,
double[] destinationArray,
int destinationIndex,
double lowerBound,
double upperBound
)
Public Sub Uniform (
sampleSize As Integer,
destinationArray As Double(),
destinationIndex As Integer,
lowerBound As Double,
upperBound As Double
)
public:
void Uniform(
int sampleSize,
array<double>^ destinationArray,
int destinationIndex,
double lowerBound,
double upperBound
)
member Uniform :
sampleSize : int *
destinationArray : float[] *
destinationIndex : int *
lowerBound : float *
upperBound : float -> unit
ArgumentNullException | destinationArray is null. |
ArgumentOutOfRangeException | sampleSize is not positive. -or- destinationIndex is negative. |
ArgumentException |
Parameter sampleSize must be less than or
equal to the
difference between the length of
parameter destinationArray
and destinationIndex. -or- upperBound is not greater than lowerBound. |