diff --git a/doc/html/bug.html b/doc/html/bug.html index ed8264e..7701fb4 100644 --- a/doc/html/bug.html +++ b/doc/html/bug.html @@ -76,17 +76,19 @@ $(function() {
Implementation of the jacobi rotation method. More...
-#include <cmath>#include <algorithm>#include <cmath>#include <utility>#include "utils.hpp"#include "jacobi.hpp"#include "matrix.hpp"|
+ FYS3150: Project 2
+
+ |
+
Main program for Project 2. +More...
+#include <cassert>#include <cmath>#include <iostream>#include "utils.hpp"#include "matrix.hpp"#include "jacobi.hpp"+Functions | |
| +void | write_transformation_dense (int N) |
| +void | write_transformation_tridiag (int N) |
| +void | write_eigenvec (int N) |
| +int | main () |
Main program for Project 2.
+The program performs the Jacobi rotation method. The size of the matrix, and number of transformations performed are written to file. Eigenvector correstonding to the 3 smallest eigenvalues for matrices of size 6x6 and 100x100 are written to file.
+ +#include <string>#include <vector>#include <iomanip>#include <sstream>Go to the source code of this file.