1 |
Array: similar with STL vector
1
array< std::string, 3> a</pre>
Multi-Array: refer to this for more details, similar with matlab matrix operation
1
2typedef boost::multi_array<double, 3> array_type;
array_type A(boost::extents[3][4][2]);
1 | #include "boost/array.hpp" |
Array: similar with STL vector
1 | array< std::string, 3> a</pre> |
Multi-Array: refer to this for more details, similar with matlab matrix operation
1 | typedef boost::multi_array<double, 3> array_type; |