04-09-2013 09:24 AM
Can someone explain me how the appended array1(1X2) is becoming appended array 2 (4X2); I didnt figure out how indexing works here.
Thank you
Solved! Go to Solution.
04-09-2013 09:32 AM - edited 04-09-2013 09:33 AM
Hi Venki,
at the output tunnel each 1×2 1D-Array will go to a ROW of the 2D array. As you notice: the latest values of array 1 form the last row of the 2D array...
That's how autoindexing works: scalars form an 1D array, 1D vectors become rows of a 2D array, 2D array becomes pages of a 3D array, and so on... And vice versa for an input tunnel!
04-09-2013 09:39 AM
Thank you very much Gerd!!
04-09-2013 01:35 PM