for example
an array of doubles
double[] myArr;
if i was to create an array of arrays it would be
double[][] myArr;
an array of array of arrays
double[][][] myArr;
how would i set this so i can have n number of arrays of arrays without having to define them all (just have 1 that can be on n number of arrays/ dimentions)
example (extreme case)
double[][][][][][][][][][][] myArr;