diff --git a/doc/html/bug.html b/doc/html/bug.html
index 69d0457..ed8264e 100644
--- a/doc/html/bug.html
+++ b/doc/html/bug.html
@@ -74,17 +74,19 @@ $(function() {
- File jacobi.cpp
-- No known bugs
+- The eigenvalues fail the test. When comparing them to arma::eigsym there is one value that is way off when testing with a 6x6 matrix.
- File jacobi.hpp
-- No known bugs
+- No known bugs
- File matrix.cpp
- No known bugs
- File matrix.hpp
-- No known bugs
+- No known bugs
- File test_suite.cpp
- No known bugs
+- File utils.cpp
+- No known bugs
- File utils.hpp
-- No known bugs
+- No known bugs
diff --git a/doc/html/files.html b/doc/html/files.html
index 95e48a8..e4cdc2b 100644
--- a/doc/html/files.html
+++ b/doc/html/files.html
@@ -81,6 +81,7 @@ $(function() {
| jacobi.cpp | Implementation of the jacobi rotation method |
| matrix.cpp | Function prototypes for creating tridiagonal matrices |
| test_suite.cpp | Test suite for project 2 |
+| utils.cpp | Implementation of the utils |
diff --git a/doc/html/globals.html b/doc/html/globals.html
index fd8a470..cb7c691 100644
--- a/doc/html/globals.html
+++ b/doc/html/globals.html
@@ -76,7 +76,7 @@ $(function() {
jacobi_eigensolver() : jacobi.cpp, jacobi.hpp
jacobi_rotate() : jacobi.cpp, jacobi.hpp
max_offdiag_symmetric() : matrix.cpp, matrix.hpp
-scientific_format() : utils.hpp
+scientific_format() : utils.cpp, utils.hpp
diff --git a/doc/html/globals_func.html b/doc/html/globals_func.html
index c478873..cb63135 100644
--- a/doc/html/globals_func.html
+++ b/doc/html/globals_func.html
@@ -75,7 +75,7 @@ $(function() {
jacobi_eigensolver() : jacobi.cpp, jacobi.hpp
jacobi_rotate() : jacobi.cpp, jacobi.hpp
max_offdiag_symmetric() : matrix.cpp, matrix.hpp
-scientific_format() : utils.hpp
+scientific_format() : utils.cpp, utils.hpp
diff --git a/doc/html/jacobi_8cpp.html b/doc/html/jacobi_8cpp.html
index 83662c7..60c9b48 100644
--- a/doc/html/jacobi_8cpp.html
+++ b/doc/html/jacobi_8cpp.html
@@ -88,6 +88,7 @@ Functions
| | Computes a single rotation.
|
| |
| void | jacobi_eigensolver (const arma::mat &A, double eps, arma::vec &eigenvalues, arma::mat &eigenvectors, const int maxiter, int &iterations, bool &converged) |
+| | Solves the eigenvalue problem using the jacobi rotation method.
|
| |
@@ -95,7 +96,7 @@ Functions
- Author
- Cory Alexander Balaton (coryab)
-
Janita Ovidie Sandtrøen Willumsen (janitaws)
-- Bug:
- No known bugs
+- Bug:
- The eigenvalues fail the test. When comparing them to arma::eigsym there is one value that is way off when testing with a 6x6 matrix.
◆ jacobi_eigensolver()
@@ -152,7 +153,8 @@ Janita Ovidie Sandtrøen Willumsen (janitaws)
-
@ brief Solves the eigenvalue problem using the jacobi rotation method.
+
+
Solves the eigenvalue problem using the jacobi rotation method.
Description
- Parameters
-
diff --git a/doc/html/jacobi_8hpp.html b/doc/html/jacobi_8hpp.html
index 415964c..6952681 100644
--- a/doc/html/jacobi_8hpp.html
+++ b/doc/html/jacobi_8hpp.html
@@ -91,6 +91,7 @@ Functions
| | Computes a single rotation.
|
| |
| void | jacobi_eigensolver (const arma::mat &A, double eps, arma::vec &eigenvalues, arma::mat &eigenvectors, const int maxiter, int &iterations, bool &converged) |
+| | Solves the eigenvalue problem using the jacobi rotation method.
|
| |
@@ -98,7 +99,7 @@ Functions
- Author
- Cory Alexander Balaton (coryab)
-
Janita Ovidie Sandtrøen Willumsen (janitaws)
-- Bug:
- No known bugs
+- Bug:
- No known bugs
◆ jacobi_eigensolver()
@@ -155,7 +156,8 @@ Janita Ovidie Sandtrøen Willumsen (janitaws)
-
@ brief Solves the eigenvalue problem using the jacobi rotation method.
+
+
Solves the eigenvalue problem using the jacobi rotation method.
Description
- Parameters
-
diff --git a/doc/html/jacobi_8hpp_source.html b/doc/html/jacobi_8hpp_source.html
index d38153f..98710d5 100644
--- a/doc/html/jacobi_8hpp_source.html
+++ b/doc/html/jacobi_8hpp_source.html
@@ -93,8 +93,8 @@ $(function() {
-void jacobi_rotate(arma::mat &A, arma::mat &R, int k, int l)
Computes a single rotation.
Definition: jacobi.cpp:14
-void jacobi_eigensolver(const arma::mat &A, double eps, arma::vec &eigenvalues, arma::mat &eigenvectors, const int maxiter, int &iterations, bool &converged)
Definition: jacobi.cpp:53
+void jacobi_rotate(arma::mat &A, arma::mat &R, int k, int l)
Computes a single rotation.
Definition: jacobi.cpp:15
+void jacobi_eigensolver(const arma::mat &A, double eps, arma::vec &eigenvalues, arma::mat &eigenvectors, const int maxiter, int &iterations, bool &converged)
Solves the eigenvalue problem using the jacobi rotation method.
Definition: jacobi.cpp:54