indexer¶
Parameters¶
Parameter label |
I/O type |
Data type |
Mandatory parameter? |
Default value |
---|---|---|---|---|
|
input |
vector |
yes |
N/A |
|
output |
vector |
N/A |
N/A |
Functionality¶
Module creates a vector with ascending indices (starting with 0) for a given inputVec
.
Here are two examples:
inputVec = [1,-2,-3,-4]
...
outputVec = [0,1,2,3]
inputVec = ['a','b','c']
...
outputVec = [0,1,2]