I have a Boost multiarray whose dimensions are set at run-time based on input from the user.
I'd now like to iterate over that array via x,y,z
components.
If this were a std::vector, I would use:
for(int i=0;i<v.size();i++){
Or perhaps some kind of iterator.
How do I get numeric values of the multiarray's dimensions?
How do I iterate over the multiarray?