I have a n-dimensional Boost.MultiArray I initialize as follows:

const int n=3, size=4; //# of dimensions and size of one dimension
boost::multi_array<char,n> arr;
boost::array<size_t,n> extents; //size of each dimension
extents.assign(size); //assign size to each dimension -> {{4, 4, 4}}
arr.resize(extents);

So I have 4 lines of code to get the MultiArray, but I'd like to do it in one line. Is there any simple way to generate an MultiArray with n dimensions each having size length (so I can write arr(samevaluearray(n,size))) or did I miss a handy constructor for MultiArray?

Edit: It should work without depending on a certain value of n, i.e. arr({{size,size}} would only work for n=2.

Since it may not be clear: boost::multi_array<char,n>(boost::extents[4][4][4]) correctly initializes a 4x4x4-array, but every time n is changed in the sourcecode, every initialization has to be updated by hand, so it's not an option.

link|improve this question

2  
OMG, is it that hard to wrap this in a function that accepts two integers and returns boost::multi_array? – Vlad Lazarenko Jan 15 at 16:45
1  
Or for real fun, wrap it inside of a macro ;-) – Chris O Jan 15 at 17:05
feedback

4 Answers

up vote 3 down vote accepted

Turns out, std::vector has a constructor, that constructs a vector with a constant value repeated n times, so a possible solution looks like this:

const int n=2, size=4; //# of dimensions and size of one dimension
boost::multi_array<char,n> arr(std::vector<size_t>(n,size));

This initializes a n-dimensional multi_array with each dimension's size set to size.

link|improve this answer
Right, you didn't solve the problem + forgot to specify array type that you are creating. Not to mention a huuuuge overhead of creating a vector :-D – Vlad Lazarenko Jan 15 at 17:45
@VladLazarenko Forgot to change < to &lt; so the type wasn't visible. It works, but feel free to explain why it wouldn't work. – tstenner Jan 15 at 17:50
Well, it would work to some extent. But I am afraid you will bump into a problem later and will have to change your code all over the place. This is because I have a feeling that you don't really understand the role of const int n in this place - it is not a variable, but a constant compile-time expression. Now, try to write a function that multiplies two arrays, accepts N, size and two arrays as its arguments. Your code will quickly fail because n will not be known by compiler at compile-time. – Vlad Lazarenko Jan 15 at 17:58
Multiplying 2 arrays is trivial, as I'd just use a 1D-view of both arrays, but since you're not convinced I know what I'm doing, here's a function to iterate over a n-dimensional array: template<int level=0> void iterate(boost::multi_array<char,n>& arr, boost::array<size_t,n> index){for(int i=0;i<size;++i) {index[level]=i; iterate<level+1>(arr,index);}} template<> void iterate<n>(boost::multi_array<char,n>& arr, boost::array<size_t,n> index){ arr(index)++;} – tstenner Jan 15 at 18:17
Would've formatted it better, but comments don't allow much. – tstenner Jan 15 at 18:18
show 4 more comments
feedback

You can encapsulate the creation of the array into an helper function:

template <typename T, size_t N>
boost::multi_array<T, N> make_regular_matrix(const size_t m)
{
    boost::multi_array<T, N> arr;
    boost::array<size_t, N> extents;
    extents.assign(m);
    arr.resize(extents);

    return arr;
}

const int n = 3;
int size = 4; // Can be const as well, but this is not mandatory

auto arr = make_regular_matrix<char, n>(size);

If you can't use auto, you'll have to duplicate the template parameters:

boost::multi_array<char, n> arr = make_regular_matrix<char, n>(size);

The make_regular_matrix function could be shortened to use std::vector, as you did in your answer; I don't know if this implementation would be better. The aim of the helper function is to hide the creation of the array, but other versions could be written, for example to initialize the array elements with a given value:

template <size_t N, typename T> //switched order for deduction
boost::multi_array<T, N> make_regular_matrix(const size_t m, const T & value)
{
     boost::multi_array<T, N> arr(std::vector<size_t>(n, m));

     std::fill(arr.data(), arr.data() + arr.num_elements(), value);

     return arr;
}

auto arr = make_regular_matrix<4>(3, 'z'); //creates a 3x3x3x3 matrix
                                           //filled with 'z's
link|improve this answer
feedback

From the Boost Multi-Array documentation, yes, you can initialize it one line:

typedef boost::multi_array<double, 3> array_type;
typedef array_type::index index;
array_type A(boost::extents[3][4][2]);

The typedefs are for readability, one can just as easily do for your example:

boost::multi_array<int, 2> arr(boost::extents[2][4]);
link|improve this answer
This works, but only for n=2. For every other n, the code needs to be adjusted manually. – tstenner Jan 11 at 18:50
1  
@tstenner: Erm... what else did you expect? You have to adjust some code atleast. What did you want to do instead to create a new multi_array? – Xeo Jan 15 at 17:51
Actually, you have came up with the exactly what OP was looking for, so +1. For some reason he still haven't got it and answered his own question, saying exactly the same thing... Sad. – Vlad Lazarenko Jan 15 at 21:35
Actually, it generates a 3x4x2-array, the second version generates a 2x4-array. If I wanted to edit the code every time I wanted to change the number of dimensions, I would have done so myself. – tstenner Jan 16 at 15:23
feedback

You probably got confused with that 2 vs 4. That parameter is a constant compile-time expression. You cannot dynamically change it. Thus, you must know it when you compile your program. For example, it cannot be a user input. On top of that, different value creates a different type. For example, things like boost::multi_array<char, 1> and boost::multi_array<char, 2> become two completely different types. And since C++ is strictly typed language, you cannot create one function that returns different types of arrays. After this point, you have two choices, you have to write different code.

Lucky you, C++ supports template meta-programming. So everywhere where you use arrays, you can carry its compile-time dimension. If you can use C++11 support, you can also combine a helper function with auto and get something like this:

#include <boost/multi_array.hpp>

template <typename T, int N>
inline boost::multi_array<T, N>
multi_array_create (size_t x)
{
    return boost::multi_array<T, N> (boost::extents [N][x]);
}

int main ()
{
    auto arr = multi_array_create<char, 2> (4);
}

In this case you don't have to type your 2 or 4 everywhere and specify it only where you create those arrays.

But if what you really want is to create different arrays which have the same type, then boost::multi_array is simply not for you. So you will need to fall back to old good way of creating those array. For example, see this example.

link|improve this answer
I don't see, how this would create a 4-dimensional array when I set n to 4 (at compile time). – tstenner Jan 15 at 17:28
feedback

Your Answer

 
or
required, but never shown

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