atof gets a constchar* and you are passing a string.
Use string::c_str : atof( entryString.c_str() )
you have a vector<double> and you have two subscripting operators: Vector[ rows ][ columns ]. Change the declaration of 'Vector' to a 2D vector : vector< vector<double> > &Vector