See version :
Pas de dépendances
Download :
#include "boost/multi_array.hpp" int main () { boost::multi_array<double, 3> A(boost::extents[3][4][2]); A[0][0][0] = 9.0; A[2][0][0] = 10.0; return 0; }
No explanations yet.