ViewVC Help
View File | Revision Log | Show Annotations | View Changeset | Root Listing
root/group/trunk/OOPSE-2.0/src/math/SquareMatrix.hpp
(Generate patch)

Comparing trunk/OOPSE-2.0/src/math/SquareMatrix.hpp (file contents):
Revision 1594 by tim, Mon Oct 18 23:13:23 2004 UTC vs.
Revision 1603 by tim, Tue Oct 19 21:28:55 2004 UTC

# Line 80 | Line 80 | namespace oopse {
80  
81          /**
82           * Retunrs  the inversion of this matrix.
83 <         * @todo
83 >         * @todo need implementation
84           */
85           SquareMatrix<Real, Dim>  inverse() {
86               SquareMatrix<Real, Dim> result;
# Line 90 | Line 90 | namespace oopse {
90  
91          /**
92           * Returns the determinant of this matrix.
93 <         * @todo
93 >         * @todo need implementation
94           */
95          double determinant() const {
96              double det;
# Line 148 | Line 148 | namespace oopse {
148              return true;
149          }        
150  
151 <        /** @todo need implement */
151 >        /** @todo need implementation */
152          void diagonalize() {
153              //jacobi(m, eigenValues, ortMat);
154          }
# Line 165 | Line 165 | namespace oopse {
165              SquareMatrix<Real, Dim> ortMat;
166              
167              if ( !isSymmetric()){
168 <                throw();
168 >                //throw();
169              }
170              
171              SquareMatrix<Real, Dim> m(*this);

Diff Legend

Removed lines
+ Added lines
< Changed lines
> Changed lines