Tagged Questions
17
votes
13answers
4k views
Boost::multi_array performance question
I am trying to compare the performance of boost::multi_array to native dynamically allocated arrays, with the following test program:
#include <windows.h>
#define _SCL_SECURE_NO_WARNINGS
...
6
votes
2answers
191 views
How to specify degenerate dimension of boost multi_array at runtime?
I have a 3D multi_array and I would like to make 2D slices using dimensions specified at runtime. I know the index of degenerate dimension and an index of slice, that I want to extract in that ...
5
votes
1answer
744 views
How to assign / copy a Boost::multi_array
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 ...
4
votes
1answer
138 views
Boost multi_array range compilation
A range can be used to slice a Boost Multidimensional array (multi_array). According to the documentation there are several ways of defining a range, however not all of them will compile. I'm using ...
3
votes
4answers
184 views
One-line initialiser for Boost.MultiArray
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> ...
3
votes
1answer
110 views
Boost C++ - dynamically iterating over multi-array
I have a large 2D multi_array that I need to reduce to a smaller set of data (also 2D). At runtime I have a vector of the column indices that I want to select and put into the sub-array.
I know that ...
3
votes
1answer
200 views
Iterating over the dimensions of a boost::multi_array
I'm trying to write some dimension-independent code for a template class in c++, using a boost::multi_array (though if other containers/data structures are better at this, I'd be happy to hear about ...
3
votes
1answer
364 views
What is the difference betwen boost::multi_array views and subarrays
After looking the documentation I cannot figure this one out.
I can write code such as
typedef boost::multi_array<boost::int32_t, 3> data_t;
// 3d --
typedef data_t::array_view<3>::type ...
3
votes
3answers
228 views
boost::multi_array resize exception?
I'm trying to figure out if the boost::multi_array constructor or resize method can throw a bad_alloc exception (or some other exception indicating the allocation or resize failed). I can't find this ...
2
votes
1answer
33 views
Boost::multi_array looping
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 ...
2
votes
1answer
100 views
Boost MultiArray Copy Constructor
I have got a problem understanding the copy constructor implementation of boost::multi_:array.
When I try the following
std::vector<double> a;
std::vector<double> b;
a.resize(12);
...
1
vote
1answer
92 views
Instantiating a std::vector of boost::multi_array.. melting brain for cpp guru?
I think I'm confused with instantiating objects.. well.. not properly object because new statements make a compile error. My background is in Python and Java and I'm stuck in front of C++ way of ...
1
vote
1answer
45 views
how to merge two or more one dimensional boost::multi_array s?
I want to learn how to add an one dimensional multi_array to end of another one dimensional multi_array. How would i do that?
1
vote
3answers
89 views
Understanding the Boost MultiArray parameters
This is from the Boost docs and compiles without problems.
#include "boost/multi_array.hpp"
int main () {
// Create a 3D array that is 3 x 4 x 2
typedef boost::multi_array<double,3> ...
1
vote
1answer
360 views
how to traverse a boost::multi_array
I have been looking into the boost::multi_array library in search of an iterator that allows you to traverse the whole multi_array in a single for loop.
I don't think there is any such iterator in ...
1
vote
1answer
325 views
Boost.MultiArray Beginner: How to get a 4D-Array with dynamic inner-array-sizes?
i want to store some kind of distance-matrix (2D), where each entry has some alternatives (different coordinates). So i want to access the distance for example x=1 with x_alt=3 and y=3 with y_alt=1, ...
0
votes
1answer
21 views
Boost Multiarray Dimensions
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:
...
0
votes
1answer
18 views
Boost Signed/Unsigned Comparsion of size_type and index of multi_array
I'm using a boost::multi_array and when I need to check if a given coordinate is within bounds, I do this:
bool MapData::IsWithinBounds(TileArray3D::index x, TileArray3D::index y, TileArray3D::index ...
0
votes
2answers
86 views
2d array from boost::multi_array - unable to compile
I am trying to create a 2d array class based on boost::multi_array. I face two issues in the code given below. (1) The code for the member function col() does not compile saying that ::type’ has not ...
0
votes
1answer
156 views
Copying data correctly between Qt Qimage and Boost Multi Array
I have a situation where I want to copy the data from a Qt image into a Boost Multi Array, do some manipulation to the Multi Array and copy the data back to a QImage to display.
I am accessing the ...
0
votes
1answer
100 views
boost::multi_index_container compile error due to incomplete type on index typedef'ing
I am using the boost::multi_index_container (as follows) and I am running into a compile error when trying to typedef the index:
struct del_t
{
string del_id;
string dev_version;
};
struct ...
0
votes
1answer
356 views
boost::multi_index index by function call with parameter(s)
I'm trying to make a boost::multi_index container that uses member functions w/ parameters as keys.
class Data {
public:
std::string get(const std::string & _attr) { return ...