equality of vectorial spaces

This commit is contained in:
2024-02-16 10:39:42 +01:00
parent c2fd2805fa
commit 46dcad1457
3 changed files with 45 additions and 5 deletions

View File

@@ -21,9 +21,19 @@ class Vect {
void Print() const;
std::size_t GetDimension() const;
std::size_t GetCardinal() const;
Matrix GetLinearSystem() const;
/**
* \brief Concatène la base actuelle avec un nouveau vecteur
* \param mat Une matrice colonne de taille GetDimension()
*/
void AddVector(const Matrix& mat);
bool operator==(const Vect& other) const;
bool operator!=(const Vect& other) const;
private:
void Simplify();
};