diff --git a/src/main.cpp b/src/main.cpp index a21aa53..929b700 100644 --- a/src/main.cpp +++ b/src/main.cpp @@ -19,22 +19,6 @@ #include "matrix.hpp" #include "jacobi.hpp" -// void analytical_eigenvec(arma::mat &analytic, int N) -// { -// arma::vec analytic_vec = arma::vec(N); -// for (int i=0; i < N; i++) { -// for (int j=0; j < N; j++) { -// analytic_vec(j) = std::sin(((j+1.)*(i+1.)*M_PI) / (N+1.)); -// } -// analytic_vec = arma::normalise(analytic_vec); - -// // Flip the sign of the analytic vector if they are different -// if (analytic_vec(0)*v(0) < 0.) { -// analytic_vec *= -1; -// } -// } -// } - void write_transformation_dense(int N) {