looking for an object that works like a classical 2D array:
f array n[][] = {{1, 2, 3;};
{4, 5, 6;}}
and is accessed by telling it the coordinates where to read / write a value (float or int would suffice).
arrays in Pd seem to only work 1D, assigning 1 value to 1 position?