I've looked at this post which addresses how to loop over arrays that aren't zero-based using the boost::multi_array::origin() function, but that only creates a single loop.

How does one traverse each dimension of a multi_array, for example:

for(index i = <origin of dim 1>; ...) {
   for(index j = <origin of dim 2>; ...) {
      for(index k = <origin of dim 3>; ...) {
         myArray[i][j][k] = <something>;
      }
   }
}

when given an array where both upper and lower bounds are unknown?

link|improve this question

feedback

1 Answer

up vote 1 down vote accepted

The index_bases member function returns a container with each dimension's index base. The shape member function returns a container with each dimension's extent (size). You can use both of these to determine the range of indices for each dimension:

typedef boost::multi_array<int, 3> array_type;
typedef array_type::extent_range range;
typedef array_type::index index;
array_type::extent_gen extents;
array_type A(extents[2][range(1,4)][range(-1,3)]);

index iMin = A.index_bases()[0];
index iMax = iMin + A.shape()[0] - 1;
index jMin = A.index_bases()[1];
index jMax = jMin + A.shape()[1] - 1;
index kMin = A.index_bases()[2];
index kMax = kMin + A.shape()[2] - 1;

for (index i=iMin; i<=iMax; ++i)
{
    for (index j=jMin; j<=jMax; ++j)
    {
        for (index k=kMin; k<=kMax; ++k)
        {
            std::cout << A[i][j][k] << " ";
        }
    }
}
link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.