solver move matricies

This commit is contained in:
2024-05-04 14:56:50 +02:00
parent 36ef301cb9
commit e71bc588e5
6 changed files with 37 additions and 32 deletions

View File

@@ -25,8 +25,8 @@ void test() {
Solver solver;
Vect image = solver.Image(mat2);
Vect noyau = solver.Kernel(mat2);
Vect image = solver.Image(Matrix{mat2});
Vect noyau = solver.Kernel(Matrix{mat2});
std::cout << "\tImage :\n";
Print(image);