Overload List
| # | Signature | Description |
|---|---|---|
| 1 | Vector RandGauss(int Len, const TMtxFloatPrecision FloatPrecision); | Returns random values with gaussian distribution. |
| 2 | Matrix RandGauss(int Rows, int Cols, const TMtxFloatPrecision FloatPrecision); | Returns random values with gaussian distribution. |
| 3 | Vector RandGauss(int Len, const TMtxFloatPrecision FloatPrecision, double aMean, double AStdDev); | Returns random values with gaussian distribution. |
| 4 | Matrix RandGauss(int Rows, int Cols, const TMtxFloatPrecision FloatPrecision, double aMean, double AStdDev); | Returns random values with gaussian distribution. |
Overload 1: Vector RandGauss(int Len, const TMtxFloatPrecision FloatPrecision);
Returns random values with gaussian distribution.
| # | Name | Type | Description |
|---|---|---|---|
| 1 | Len | int | |
| 2 | FloatPrecision | const TMtxFloatPrecision |
Remarks:
Internally calls Vector::RandGauss
Declared in Dew::Math::Units::MtxExpr · Dew.Math/Units.MtxExpr.h · Cross-compiler
Overload 2: Matrix RandGauss(int Rows, int Cols, const TMtxFloatPrecision FloatPrecision);
Returns random values with gaussian distribution.
| # | Name | Type | Description |
|---|---|---|---|
| 1 | Rows | int | |
| 2 | Cols | int | |
| 3 | FloatPrecision | const TMtxFloatPrecision |
Remarks:
Internally calls Matrix::RandGauss
Declared in Dew::Math::Units::MtxExpr · Dew.Math/Units.MtxExpr.h · Cross-compiler
Overload 3: Vector RandGauss(int Len, const TMtxFloatPrecision FloatPrecision, double aMean, double AStdDev);
Returns random values with gaussian distribution.
| # | Name | Type | Description |
|---|---|---|---|
| 1 | Len | int | |
| 2 | FloatPrecision | const TMtxFloatPrecision | |
| 3 | aMean | double | |
| 4 | AStdDev | double |
Remarks:
Internally calls Vector::RandGauss
Declared in Dew::Math::Units::MtxExpr · Dew.Math/Units.MtxExpr.h · Cross-compiler
Overload 4: Matrix RandGauss(int Rows, int Cols, const TMtxFloatPrecision FloatPrecision, double aMean, double AStdDev);
Returns random values with gaussian distribution.
| # | Name | Type | Description |
|---|---|---|---|
| 1 | Rows | int | |
| 2 | Cols | int | |
| 3 | FloatPrecision | const TMtxFloatPrecision | |
| 4 | aMean | double | |
| 5 | AStdDev | double |
Remarks:
Internally calls Matrix::RandGauss
Declared in Dew::Math::Units::MtxExpr · Dew.Math/Units.MtxExpr.h · Cross-compiler