equality of vectorial spaces
This commit is contained in:
10
src/Vect.h
10
src/Vect.h
@@ -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();
|
||||
};
|
||||
Reference in New Issue
Block a user