vectorial space to linear equation
All checks were successful
Linux arm64 / Build (push) Successful in 30s
All checks were successful
Linux arm64 / Build (push) Successful in 30s
This commit is contained in:
11
src/main.cpp
11
src/main.cpp
@@ -21,10 +21,17 @@ void test() {
|
||||
|
||||
Solver solver{mat2};
|
||||
|
||||
Vect image = solver.Image();
|
||||
Vect noyau = solver.Noyau();
|
||||
|
||||
std::cout << "\tImage :\n";
|
||||
solver.Image().Print();
|
||||
image.Print();
|
||||
std::cout << "Système :\n";
|
||||
image.GetLinearSystem().Print();
|
||||
std::cout << "\tNoyau :\n";
|
||||
solver.Noyau().Print();
|
||||
noyau.Print();
|
||||
std::cout << "Système :\n";
|
||||
noyau.GetLinearSystem().Print();
|
||||
}
|
||||
|
||||
void prompt() {
|
||||
|
||||
Reference in New Issue
Block a user