I've hunted high and low on the net and not been able to find a working answer for this.
I need to create a variable that is a 3 dimensional array but the first reference point should be string and the second double.
e.g.
readings["alpha"][] = 17.42;
readings["alpha"][] = 19.42;
readings["beta"][] = 11.1;
Please note I cant reference the index's as I don't know how many index's there will be!
I would then use a for each on the array to get the values, so a for each on the alpha would return
17.42, 19.42
Any one have any ideas as I'm dumbfounded as to why I cant just create an array and use strings as the index instead of int values.