Lines Matching refs:covMat

46   SquareMatrixType covMat =  a * a.adjoint();  in benchEigenSolver()  local
51 int r = internal::random<int>(0,covMat.rows()-1); in benchEigenSolver()
52 int c = internal::random<int>(0,covMat.cols()-1); in benchEigenSolver()
54 SelfAdjointEigenSolver<SquareMatrixType> ei(covMat); in benchEigenSolver()
60 ei.compute(covMat); in benchEigenSolver()
68 EigenSolver<SquareMatrixType> ei(covMat); in benchEigenSolver()
74 ei.compute(covMat); in benchEigenSolver()
85 std::cout << covMat.rows() << " \t" in benchEigenSolver()
95 gmm::dense_matrix<Scalar> gmmCovMat(covMat.rows(),covMat.cols()); in benchEigenSolver()
96 gmm::dense_matrix<Scalar> eigvect(covMat.rows(),covMat.cols()); in benchEigenSolver()
97 std::vector<Scalar> eigval(covMat.rows()); in benchEigenSolver()
98 eiToGmm(covMat, gmmCovMat); in benchEigenSolver()
133 gsl_matrix* gslCovMat = gsl_matrix_alloc(covMat.rows(),covMat.cols()); in benchEigenSolver()
134 gsl_matrix* gslCopy = gsl_matrix_alloc(covMat.rows(),covMat.cols()); in benchEigenSolver()
135 gsl_matrix* eigvect = gsl_matrix_alloc(covMat.rows(),covMat.cols()); in benchEigenSolver()
136 gsl_vector* eigval = gsl_vector_alloc(covMat.rows()); in benchEigenSolver()
137 gsl_eigen_symmv_workspace* eisymm = gsl_eigen_symmv_alloc(covMat.rows()); in benchEigenSolver()
139 gsl_matrix_complex* eigvectz = gsl_matrix_complex_alloc(covMat.rows(),covMat.cols()); in benchEigenSolver()
140 gsl_vector_complex* eigvalz = gsl_vector_complex_alloc(covMat.rows()); in benchEigenSolver()
141 gsl_eigen_nonsymmv_workspace* einonsymm = gsl_eigen_nonsymmv_alloc(covMat.rows()); in benchEigenSolver()
143 eiToGsl(covMat, &gslCovMat); in benchEigenSolver()