Creates a vector of consecutively increasing values from a minimum to maximum value using a given incremenet.
Eg. MLVector(0,1,10) would give: [0 1 2 3 4 5 6 7 8 9 10].
Number | Type | Compulsory | Default | Description |
---|---|---|---|---|
1 |
real |
Yes |
|
Minimum value |
2 |
real |
Yes |
|
Incremenet value |
3 |
real |
Yes |
|
Maximum value |
Return type: real array
A vector of values within the specified range with given increments.
|