The following code creates a table:
a = Table[{i,j,k,l,m,n}, {i,3}, {j,3},{k,3},{l,3},{m,3},{n,3}]
However when I use Part:
a[[1,3]]
I don't get anything close to the correct cell value. I get a list of the whole table.
However when I use RandomReal to build a Table instead of the built in iterators, Part works as expected.
Does anyone know why part works for one Table and not the other?
Thank you in advance.
August