<t>Hi,I'm tring to choose the best way to implement the class "matrix" in my financial library, and I have 3 possibilities1) use vector<vector<double> >2) use valarray<valarray<double> >3) create a new class where I will define a double ** field to contain all dataandrea >>Hi Andrea,There really sho...