Hi,
I need to create a vi such that it takes in two inputs: a 2-d array and a numeric value (number of cycles), and returns a 2-d array where its first-column values increment as usually and second-column values are repeated the specified number of times. For example, if the 2d array is [0,7; 1,8; 2,9] and number of cycles is 3, then the output array is [0,55; 1,56; 2,57; 3,55; 4,56; 5,57; 6,55; 7,56; 8,57]
Is there a pre-existing vi that does this or something similar? Thanks.
Attached is what I can come up with, with two subVIs downloaded from this website. It doesn't work as I wish it would, please help. Thanks.