Hi, I'm trying to add columns from existing arrays to spare time and perhaps memory when reading it
I have 3 arrays (with the same size) and want to put them togheter by columns (the inverse of _ArrayUnique function) is it possible? (and fast?)
Here's a example of _ArrayUnique():
thanks in advance
I have 3 arrays (with the same size) and want to put them togheter by columns (the inverse of _ArrayUnique function) is it possible? (and fast?)
Here's a example of _ArrayUnique():
[ autoit ]
#include <Array.au3> Dim $aArray[6][2] = [[1, "A"],[2, "B"],[3, "C"],[1, "A"],[2, "B"],[3, "C"]] _ArrayDisplay($aArray, "$aArray") $aNewArray = _ArrayUnique($aArray) ;Using Default Parameters _ArrayDisplay($aNewArray, "$aNewArray represents the 1st Dimension of $aArray") $aNewArray = _ArrayUnique($aArray, 2) ;Using 2nd Dimension _ArrayDisplay($aNewArray, "$aNewArray represents the 2nd Dimension of $aArray")
thanks in advance
![;)](http://aut1.autoit-cdn.com/forum/public/style_emoticons/default/wink.png)