Creates a sequence by growing steps
ID
list-sequence-grow-step-sequence
Name
Grow Step Sequence
Group
Sequence
Package
List
Keywords
After creating a node, connect the list start item to the first port. Connect the list items count to the second port. Connect the first incremental step applied to the initial value to the third port, it determines how the sequence progresses from one element to the next in the early stages. The second incremental step applied to the sequence to the fourth port. This step can influence how the sequence changes as it progresses further. On the output port, we will get the created growing list. Each element in the sequence is the result of accumulating the incremental steps from the initial value. This means that each term in the sequence is obtained by adding the previous term to the current incremental step value.
List Item
List Sequence
Inputs
Name | Type | Description | Default Value |
---|---|---|---|
start | Number | List start item | 0 |
count | Number | List items count | 5 |
step1 | Number | The first incremental step applied to the initial value | 1 |
step2 | Number | The second incremental step applied to the sequence | 0 |
Outputs
Name | Type | Description |
---|---|---|
listSequence | Number | Created list |