]> git.tdb.fi Git - libs/math.git/blobdiff - source/linal/squarematrix.h
Add basic description for all classes
[libs/math.git] / source / linal / squarematrix.h
index 94157b0f3b92f2e2de9ebbf49e927d17bf8a9ae8..0af9a7454852cb5106382fcda2a4f1c5e2aaf824 100644 (file)
@@ -14,6 +14,10 @@ public:
        virtual ~not_invertible() throw() { }
 };
 
+/**
+A mathematical matrix with S rows and columns.  Some operations are provided
+here that are only possible for square matrices.
+*/
 template<typename T, unsigned S>
 class SquareMatrix: public Matrix<T, S, S>
 {
@@ -42,8 +46,7 @@ inline SquareMatrix<T, S> SquareMatrix<T, S>::identity()
 template<typename T, unsigned S>
 SquareMatrix<T, S> &SquareMatrix<T, S>::operator*=(const SquareMatrix<T, S> &m)
 {
-       Matrix<T, S, S>::operator*=(m);
-       return *this;
+       return *this = *this*m;
 }
 
 template<typename T, unsigned S>