For example, if we initialize vector>> f, the dimension in each direction is not specified. So, I am wondering, what com
vector>> f
std::vector>> f(3, std::vector>(4, std::vector(5,0.0)));
For anyone who wants it without namespace std. Also the values in this f[3][4][5] are initialised to 0.0 which might be useful.