Overload List
| # | Signature | Description |
|---|---|---|
| 1 | VectorInt Ramp(const int Len); | Returns a VectorInt of [0, 1, .., Len-1] numbers. |
| 2 | VectorInt Ramp(const int Len, const double Offset, const double Step); | Returns a VectorInt of [Offset, Offset+Step, .., Offset+(Len-1)*Step] numbers. |
Overload 1: VectorInt Ramp(const int Len);
Returns a VectorInt of [0, 1, .., Len-1] numbers.
| # | Name | Type | Description |
|---|---|---|---|
| 1 | Len | const int |
Remarks:
Internally calls TVecInt::Ramp
Declared in Dew::Math::Units::MtxExprInt · Dew.Math/Units.MtxExprInt.h · Cross-compiler
Overload 2: VectorInt Ramp(const int Len, const double Offset, const double Step);
Returns a VectorInt of [Offset, Offset+Step, .., Offset+(Len-1)*Step] numbers.
| # | Name | Type | Description |
|---|---|---|---|
| 1 | Len | const int | |
| 2 | Offset | const double | |
| 3 | Step | const double |
Remarks:
Internally calls TVecInt::Ramp
Declared in Dew::Math::Units::MtxExprInt · Dew.Math/Units.MtxExprInt.h · Cross-compiler