I'm trying to allocate space in memory for a vector of vector of double. I know that for a vector vector I can do
vector<vector<double>> Vetor(51, vector<double>(47, 1))
And this generates a vector [51] [47] but in the case of vector vector vector this definition is not so clear. Is there any possibility of allocation for this other case?