/**
* Return the dimension of the range space. @note The matrix is of
- * dimension \f$m \times n\f$.
+ * dimension $m \times n$.
*/
unsigned int m () const;
/**
* Return the number of the range space. @note The matrix is of
- * dimension \f$m \times n\f$.
+ * dimension $m \times n$.
*/
unsigned int n () const;
Vector<number> &eigenvalues,
std::vector<Vector<number> > &eigenvectors,
const int itype = 1);
-
+
/**
* Same as the other compute_generalized_eigenvalues_symmetric function
* except that all eigenvalues are computed and the tolerance is set
/*---------------------- Inline functions -----------------------------------*/
template <typename number>
-inline
-unsigned int
+inline
+unsigned int
LAPACKFullMatrix<number>::m () const
{
return this->n_rows ();
}
template <typename number>
-inline
-unsigned int
+inline
+unsigned int
LAPACKFullMatrix<number>::n () const
{
return this->n_cols ();