61 #ifndef MatrixOperations_h    62 #define MatrixOperations_h    64 #include <utility/matrix/Vector.h>    65 #include <utility/matrix/Matrix.h>    79     int setMatrix(
Matrix passedMatrix);
    81     int computeLowerCholesky();
    82     int computeInverseLowerCholesky();
    83     int computeCholeskyAndItsInverse();
    84     int computeMatrixNorm();
    86     int computeTranspose();
    87     int computeSquareRoot();
    93     Matrix getInverseLowerCholesky();
    97     double getMatrixNorm();
   105     Matrix *theInverseLowerCholesky;
   109     double theMatrixNorm;
 ?? 
Definition: MatrixOperations.h:72
Open source finite element program for structural analysis. 
Definition: ContinuaReprComponent.h:35
Matrix of floats. 
Definition: Matrix.h:111