First time using Processing. Trying to make a temporary graphical interface for my Arduino project. Probably super simple question.
How do I go about creating an array of arrays, then accessing the individual subelements?
I have a basic array myArray[] = {0,0,0,0,0};
I want to be able to make more arrays of various sizes with myArray as the element.
myArray[] firstArray = new myArray[3];
myArray[] secondArray = new myArray[5];
firstArray[0][0] = 100;
secondArray[1][2] = 37;
etc.