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