implement Vect
This commit is contained in:
@@ -5,7 +5,7 @@
|
||||
// espace vectoriel
|
||||
class Vect {
|
||||
private:
|
||||
Matrix m_Data{0, 0};
|
||||
Matrix m_Data;
|
||||
|
||||
public:
|
||||
/**
|
||||
@@ -16,7 +16,10 @@ class Vect {
|
||||
Vect(const Matrix& mat);
|
||||
|
||||
/**
|
||||
* \brief Affiche la base de l'espace vectoriel dans la console
|
||||
*/
|
||||
* \brief Affiche la base de l'espace vectoriel dans la console
|
||||
*/
|
||||
void Print() const;
|
||||
|
||||
private:
|
||||
void Simplify();
|
||||
};
|
||||
Reference in New Issue
Block a user