// This macro demonstrates how to use the // Array.sort(array1,array2,array3...) macro function, // added in ImageJ 1.52u. a = newArray(4, 1, 7, 6); b = newArray("four", 1, 7, 6); c = newArray(-4, -1, -7, -6); Array.sort(a, b, c); Array.show(a, b, c);