12-10-2009 03:23 PM
Hi,
Kind of a noob here. So here is what I want:
All 2d arrays -
Array 1: Array2: Appended Array:
0,1,2 6,7,8 0,1,2,6,7,8
3,4,5 9,10,11 3,4,5,9,10,11
So I know I can do this by indexing both input arrays and then appending them and then build another 2d array. My question is, is there a way to do this that is nice and neat and not so convoluted?
Thanks for any help.
Solved! Go to Solution.
12-10-2009 03:35 PM - edited 12-10-2009 03:38 PM
How about this?
Edit: I should mention that the matrix to array conversion is only there to hide a coercion dot. It still exists, just inside that VI.
12-10-2009 03:40 PM
Dude your awesome! Works like a champ.
I have never used Matrix stuff before. Probably going to need to look into it further.
From a speed and memory stand point, is this pretty efficient?
12-10-2009 03:42 PM
12-10-2009 03:54 PM
Tarek316 wrote:Dude your awesome! Works like a champ.
I have never used Matrix stuff before. Probably going to need to look into it further.
From a speed and memory stand point, is this pretty efficient?
I have yet to see any performance issues with the matrix functions, or at least not any that aren't similar or worse with their array counterparts.