-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathSymbolabFormatter.hpp
36 lines (33 loc) · 1.17 KB
/
SymbolabFormatter.hpp
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
#ifndef SYMBOLABFORMATTER_HPP
#define SYMBOLABFORMATTER_HPP
#include <iostream>
#include "Formatter.hpp"
class SymbolabFormatter: public Formatter{
public:
SymbolabFormatter();
/**
* Retorna string da representação de uma matriz para software de 3ºs
*/
static std::string matrixString(Matrix* matrix);
/**
* Retorna string da representação de uma matriz transposta para software de 3ºs
*/
static std::string transposedMatrixString(Matrix* matrix);
/**
* Retorna string da representação de uma soma de matrizes para software de 3ºs
*/
static std::string matrixSumString(Matrix* m1, Matrix* m2);
/**
* Retorna string da representação de uma soma de matrizes para software de 3ºs
*/
static std::string matrixSubtractionString(Matrix* m1, Matrix* m2);
/**
* Retorna string da representação de um produto de matrizes para software de 3ºs
*/
static std::string matrixProductString(Matrix* m1, Matrix* m2);
/**
* Retorna string da representação da determinante de uma matriz para software de 3ºs
*/
static std::string matrixDeterminantString(Matrix* matrix);
};
#endif