PauldePaor wrote:Below is a program I am working on and as you can see by the image that the program runs without the N loop being wired. The program runs with no issue
As everyone else has been saying, you DO NOT have to wire something to N. If you wire an array to the for-loop as an "auto-index" input, the for-loop will automatically run for the size of the smallest array.
Perhaps an example will help:
This loops over the size of my array (in this case, 5 elements long). The symbol on the edge of the for-loop that looks like brackets [ ], indicates that it is auto-indexed. The loop will iterate over each element one at a time (1, then 2, then 3, then 4, then 5).