[Home]
[Edit this page]
[Recent Changes]
[Special Pages]
[Help]
CppMatrix
[Edit this page] [Page history] [What links here] [Discuss this topic] [Printer Friendly]
CppMatrix
(C++) Matrix
A matrix is a kind of table used in mathematics. It is best implemented using a two-dimensional std::vector:typedef std::vector<std::vector<double> > Matrix; //Of course, the type can be int as well.
Related links
'Matrix' links
[Edit this page] [Page history] [What links here] [Discuss this topic] [Printer Friendly]
