Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations strongm on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Search results for query: *

  1. Asharlin

    A Matrix/Class issue...

    Ya, the re-installation fixed it...I seem to have the worst luck =) Anyway, thanks for your help. =)
  2. Asharlin

    A Matrix/Class issue...

    You beat me to mentioning that, oh well I changed that and it still does not work unfortunately. Maybe re-inventing the wheel for my use so I knew the ins and outs of the code I was using was a bad idea. And yes the first language I learned was VB and I am reasnobly new to VC++ which probably...
  3. Asharlin

    A Matrix/Class issue...

    vOuter.resize(cols); is supposed to be vOuter[i.].resize(cols); (remove the period) I really should use preview =)
  4. Asharlin

    A Matrix/Class issue...

    template <class Object> class matrix { public: matrix( int rows, int cols ) { vOuter.resize(rows); for(unsigned int i = 0; i < rows; i++) vOuter[i].resize(cols); NumOfRows = rows; NumOfCols = cols; } matrix( const matrix &rhs) {...

Part and Inventory Search

Back
Top