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