
4 Sep
2007
4 Sep
'07
5:16 p.m.
How do you access the data in the example below? Thanks much, Graham boost::multi_array<double,2> multi_test; boost::multi_array<double,2>::iterator multi_test_iter; boost::multi_array<double,2>::extent_gen extents; multi_test.resize(extents[2][3]); for (multi_test_iter = multi_test.begin(); multi_test_iter != multi_test.end(); ++multi_test_iter) { // How do you get(set) at the current data set pointed to by multi_test_iter? }