Lines Matching refs:Matrix
48 template<typename Matrix, typename Roots>
49 inline void computeRoots(const Matrix& m, Roots& roots)
51 typedef typename Matrix::Scalar Scalar;
57 // real-valued, because the matrix is symmetric.
85 template<typename Matrix, typename Vector>
86 void eigen33(const Matrix& mat, Matrix& evecs, Vector& evals)
88 typedef typename Matrix::Scalar Scalar;
89 // Scale the matrix so its entries are in [-1,1]. The scaling is applied
90 // only when at least one matrix entry has magnitude larger than 1.
93 Matrix scaledMat = mat;
121 // Matrix tmp;
141 Matrix tmp;