-
Notifications
You must be signed in to change notification settings - Fork 0
/
Matriz.h
42 lines (35 loc) · 1.21 KB
/
Matriz.h
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
#ifndef MATRIZ_H
#define MATRIZ_H
#include<QString>
namespace dnn {
class Matriz
{
private:
int quantidadeDeLinhas;
int quantidadeDeColunas;
int *ptMatriz;
public:
Matriz(int quantidadeDeLinhas, int quantidadeDeColunas);
~Matriz(){if(ptMatriz) delete[] ptMatriz;}
int getQuantidadeDeColunas()const{return this->quantidadeDeColunas;}
int getQuantidadeDeLinhas()const{return this->quantidadeDeLinhas;}
void setElemento(int linha, int coluna, int valor);
int getElemento(int linha, int coluna)const;
QString getMatriz()const;
Matriz* operator +(Matriz const * const objeto)const;
Matriz* operator -(Matriz const * const objeto)const;
Matriz* operator *(Matriz const * const objeto)const;
Matriz* gerarTransposta()const;
Matriz* multiplicarPorK(int k)const;
bool operator ==(Matriz const * const objeto)const;
bool operator !=(Matriz const * const objeto)const;
bool ehTriangularSuperior()const;
bool ehTriangularInferior()const;
bool ehSimetrica()const;
bool ehIdentidade()const;
bool ehOrtogonal()const;
bool ehDePermutacao()const;
Matriz* potenciacao(int potencia)const;
};
}
#endif // MATRIZ_H