Overload List
| # | Signature | Description |
|---|---|---|
| 1 | TMtxVec *RandGauss(); | The pseudo random sample generator with Gaussian distribution. |
| 2 | TMtxVec *RandGauss(double AMean, double AStdDev); | Fills the calling object values with pseudo random samples following the Gaussian distribution. |
| 3 | TMtxVec *RandGauss(unsigned int Seed, double AMean, double AStdDev); | Fills the calling object values with pseudo random samples following the Gaussian distribution. |
Overload 1: TMtxVec *RandGauss();
The pseudo random sample generator with Gaussian distribution.
Remarks:
Fills the calling object values with pseudo random samples following the Gaussian distribution with parameters: Mean = 0, StdDev = 1 ("Standard disctribution"). The value for the seed is obtained from the CPU clock.
See Also: TMtx::RandUniform
Declared in Dew::Math::TMtxVec · Dew.Math/AbstractMtxVec.h · Cross-compiler
Overload 2: TMtxVec *RandGauss(double AMean, double AStdDev);
Fills the calling object values with pseudo random samples following the Gaussian distribution.
| # | Name | Type | Description |
|---|---|---|---|
| 1 | AMean | double | |
| 2 | AStdDev | double |
Remarks:
The algorithm uses parameter AMean and AStdDev. The value for the seed is obtained from the CPU clock.
Declared in Dew::Math::TMtxVec · Dew.Math/AbstractMtxVec.h · Cross-compiler
Overload 3: TMtxVec *RandGauss(unsigned int Seed, double AMean, double AStdDev);
Fills the calling object values with pseudo random samples following the Gaussian distribution.
| # | Name | Type | Description |
|---|---|---|---|
| 1 | Seed | unsigned int | |
| 2 | AMean | double | |
| 3 | AStdDev | double |
Remarks:
The algorithm uses parameters AMean, AStdDev and Seed.
Declared in Dew::Math::TMtxVec · Dew.Math/AbstractMtxVec.h · Cross-compiler