Joins together 2D arrays.
NOTE - this function is maintained for backward-compatibility but is now deprecated in favor of arrayConcat(a,b)
Use this to join multiple 2D arrays into a new 2D array.
menu: veeos ==> Math ==> concat2D
library: mathLib
1 2 3 3 4 1 2 3 3 4 concat2D ( 4 5 6 , 3 4 ) yields 4 5 6 3 4 7 8 9 3 4 7 8 9 3 4 1 2 3 4 1 2 concat2D ( 4 5 , 3 4 ) yields 4 5 7 8 7 8 3 4 3 4
While the built-in "concat()" function can join together 2D arrays, it always flattens them into a 1D array. This function maintains the 2D shape and automatically determines the correct orientation. If number of rows match then columns are joined, and if number of columns match then rows are joined. If neither match then an error is raised. Note that loops are not used so this function is fast.
VEE 7.0+, all platforms