There is no back() method in boost::numeric::ublas::vector,
is it possible to emulate it in user code with preprocessor macro defining somehow array_name[array_name.size()-1]
?
array_name[i].rbegin()->operator[] (i) = 1.0
or
array_name[i][array_name[i].size()-1][i] = 1.0
hard to read, array_name[i].back()[i] = 1.0
easy to read, that why i thinking to emulate back() method.