This commit is contained in:
22
src/Vect.h
Normal file
22
src/Vect.h
Normal file
@@ -0,0 +1,22 @@
|
||||
#pragma once
|
||||
|
||||
#include "Matrix.h"
|
||||
|
||||
// espace vectoriel
|
||||
class Vect {
|
||||
private:
|
||||
Matrix m_Data{0, 0};
|
||||
|
||||
public:
|
||||
/**
|
||||
* \brief Construit une base d'un espace vectoriel à partir des colonnes d'une matrice.
|
||||
* Ne prend pas en compte les colonnes de 0
|
||||
* \param mat Une matrice échelonnée.
|
||||
*/
|
||||
Vect(const Matrix& mat);
|
||||
|
||||
/**
|
||||
* \brief Affiche la base de l'espace vectoriel dans la console
|
||||
*/
|
||||
void Print() const;
|
||||
};
|
||||
Reference in New Issue
Block a user