I want to assign a copy of a boost::multi_array. How can I do this. The object where I want to assign it to has been initialized with the default constructors.

This code does not work, because the dimensions and size are not the same

class Field {
  boost::multi_array<char, 2> m_f;

  void set_f(boost::multi_array<short, 2> &f) {
    m_f = f;
  }
}

What to use instead of m_f = f ?

link|improve this question

feedback

1 Answer

up vote 3 down vote accepted

You should resize m_f before assigning. It could look like in the following sample:

void set_f(boost::multi_array<short, 2> &f) {
    std::vector<size_t> ex;
    const size_t* shape = f.shape();
    ex.assign( shape, shape+f.num_dimensions() );
    m_f.resize( ex );
    m_f = f;
}

May be there is a better way. Conversion short to char will be implicit. You should consider using std::transform if you want explicit conversion.

link|improve this answer
2  
really ? boost does not provide any way of doing this in one line ? two at most ? – rodrigob Dec 7 '10 at 17:46
I can't believe that too. So much of inconvenience... – ulidtko Nov 7 '11 at 6:34
feedback

Your Answer

 
or
required, but never shown

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