01-13-2016 06:27 AM
Hello,
I have 2D array of color boxes [10x10], and i would like to replace elements with elements from 1D array [4 elements] at specific place.
When i trying to use ,,Replace array subset" i can only specify ROW INDEX or COLUMN INDEX where to start putting new elements. But i need to select both column/row index.
Any ideas?
Solved! Go to Solution.
01-13-2016 06:34 AM
Hi kamill,
when replacing a 1D array in a 2D array LabVIEW can only replace row- or columnwise.
When you want to replace specific, but independent elements you need to use an autoindexing FOR loop to iterate over the elements of your1D array(s)!
01-13-2016 06:51 AM
Thanks, everything works now 🙂