hi, I need to retrieve this (but i wouldn't like use 'i'):
Qt Code:
  1. vector < vector <double> >* e
  2. e->at(i).size()
  3. e->at(0).size() //it's the same
To copy to clipboard, switch view to plain text mode 
In this case the vector contains n vectors which must have the same size!
so e->at(0).size() and e->at(1).size() and e->at(n).size() are the same value;
But I don't like use (0) the reach the size.

How can I do?
and: maybe it isn't necessary use a vector of vector !?

thanks