resolve rectangular systems

This commit is contained in:
2024-02-21 22:01:31 +01:00
parent 99467048e2
commit 54798d0ff2
5 changed files with 50 additions and 1 deletions

View File

@@ -5,6 +5,7 @@
class Solver {
private:
Matrix m_Matrix;
public:
Solver(const Matrix& mat);
~Solver() {}
@@ -12,5 +13,7 @@ class Solver {
Vect Image() const;
Vect Noyau() const;
VectAffine SystemeTriangulaire() const;
std::size_t Rang() const;
};