// Use this macro to test the Array Inspector added to the // macro debugger in ImageJ 1.48d. Type cntrl+d // (Debug>Debug Macro) to start debugging and cntrl+e // (Debug>Step) to run the next statement. In the "Debug" // window, click on "firstArr" or "secondArr" to open the // Array Inspector. On Macs, use the command key instead // of the control key with keyboard shortcuts. aa = 55; bb = 66; firstArr = newArray(1.33,2.44, 5.66, "Hello"); ee = 88; firstArr[2] = 77; Array.invert(firstArr); ff = 99; secondArr = newArray(33,1,55,7,123, 5, -9); secondArr[0] = 66; Array.sort(secondArr); xx = 2;