Fix some mistakes

This commit is contained in:
Cory Balaton 2023-09-26 12:34:54 +02:00
parent e5431ebce8
commit 86e7d3acb1
No known key found for this signature in database
GPG Key ID: 3E5FCEBFD80F432B

View File

@ -5,7 +5,7 @@
* The size of the matrix, and number of transformations * The size of the matrix, and number of transformations
* performed are written to file. * performed are written to file.
* Eigenvector corresponding to the 3 smallest eigenvalues * Eigenvector corresponding to the 3 smallest eigenvalues
* for matrices of size 6x6 and 100x100 are written to file. * for matrices of size 10x10 and 100x100 are written to file.
* *
* @author Cory Alexander Balaton (coryab) * @author Cory Alexander Balaton (coryab)
* @author Janita Ovidie Sandtrøen Willumsen (janitaws) * @author Janita Ovidie Sandtrøen Willumsen (janitaws)
@ -52,7 +52,7 @@ void write_transformation_dense(int N)
ofile.close(); ofile.close();
} }
void write_transformation_tridiag(int N) void write_transformation_tridiag(int N)
{ {
std::ofstream ofile; std::ofstream ofile;