Is there a way (different use of operators, for example) to make the following more readable?
Total[Transpose[aDataStructure],{3,1,2}],2]
My concern is that I anticipate the 1st argument to Total become more complex and then the farther away the second argument moves, visually. For readability purposes I'd like the 2nd argument to Total not to "fall off the end".
Yes, I could repackage this use of Total in my own function, but it's going to be an inner, inner tunction call, and I prefer to make the Mathematica functions as explicit as possible. And, various uses of Total[#,2]& seem not right either.
The good news is that this all works great, so it's just the readability I'm concerned about.
Thank you,
--Mark