--- trunk/gadget/matrix.h 2015/04/29 12:55:30 2 +++ trunk/gadget/matrix.h 2015/07/23 19:00:38 11 @@ -4,7 +4,7 @@ //#include "doublevector.h" #include "intvector.h" #include "doublematrix.h" - +//TODO doc all /** * \class Matrix * \brief This class implements a Matrix @@ -92,6 +92,9 @@ * \note This will delete every entry from the vector and set the number of rows to zero */ void Reset(); + + //FIXME: doc + void Initialize(int nr, int nc, double initial); /** * \brief This function will set all of the entries of the vector to zero */ @@ -122,6 +125,8 @@ */ int nrow; int ncol; + + //FIXME: doc /** * \brief This is the vector of DoubleVector values */