-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathMatrix.cpp
144 lines (127 loc) · 4.95 KB
/
Matrix.cpp
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
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
#include "Matrix.h"
#include "MatrixHelper.h"
#include "MatrixError.h"
#include "Utils.h"
Matrix::matrix_t Matrix::mul(const matrix_t& matrixA, const matrix_t& matrixB) {
if (matrixA[0].size() != matrixB.size()) throw MatrixMultiplyError("Invalid dimension, can't multiply");
matrix_t result;
int row = matrixA.size();
int col = matrixB[0].size();
int row_col_common = matrixB.size();
for (int i = 0; i < row; i++) {
result.push_back({});
for (int j = 0; j < col; j++) {
result[i].push_back(0.0);
for (int x = 0; x < row_col_common; x++) {
result[i][j] += matrixA[i][x] * matrixB[x][j];
}
}
}
return result;
}
Matrix::matrix_t Matrix::add(const matrix_t& matrixA, const matrix_t& matrixB) {
if (matrixA.size() != matrixB.size() || matrixA[0].size() != matrixB[0].size())
throw MatrixPlusMinusError("Invalid dimension, can't plus");
matrix_t result;
int row = matrixA.size();
int col = matrixB[0].size();
for (int i = 0; i < row; i++) {
result.push_back({});
for (int j = 0; j < col; j++) {
result[i].push_back(matrixA[i][j] + matrixB[i][j]);
}
}
return result;
}
Matrix::matrix_t Matrix::minus(const matrix_t& matrixA, const matrix_t& matrixB) {
if (matrixA.size() != matrixB.size() || matrixA[0].size() != matrixB[0].size())
throw MatrixPlusMinusError("Invalid dimension, can't subtract");
matrix_t result;
int row = matrixA.size();
int col = matrixB[0].size();
for (int i = 0; i < row; i++) {
result.push_back({});
for (int j = 0; j < col; j++) {
result[i].push_back(matrixA[i][j] - matrixB[i][j]);
}
}
return result;
}
uint32_t Matrix::getRow() const { return m_row; }
uint32_t Matrix::getColumn() const { return m_column; }
bool Matrix::isSquare() const { return m_row > 0 && m_row == m_column; }
std::string Matrix::getElement(uint32_t row, uint32_t column) const {
if (row > m_row || column > m_column) throw std::out_of_range("Invalid position.");
return truncateZero(std::to_string(m_matrix[row][column]));
}
void Matrix::setElement(double value, uint32_t row, uint32_t column)
{
if (truncateZero(std::to_string(value)).size() > 10) throw std::exception("Value is to big");
if (row > m_row || column > m_column) throw std::out_of_range("Invalid row or column when setting element.");
m_matrix[row][column] = value;
}
Matrix::matrix_t Matrix::getMatrix() const { return m_matrix; }
Matrix::Matrix(matrix_t matrix) {
this->m_matrix = matrix;
this->m_row = matrix.size();
this->m_column = matrix[0].size();
if (m_row < 1 || m_column < 1) throw MatrixError("Invalid matrix");
if (m_row > 10 || m_column > 10) throw MatrixError("Matrix size is too big.");
for (int row = 1; row < m_row; row++) {
if (matrix[row].size() != m_column) throw MatrixError("Invalid matrix. Size of columns not the same.");
}
}
Matrix Matrix::multiplyWith(const Matrix& matrix) {
if (this->m_column != matrix.getRow()) throw MatrixMultiplyError("Invalid dimension. Cannot multiply.");
matrix_t result = mul(this->m_matrix, matrix.getMatrix());
return Matrix(result);
}
Matrix Matrix::multiply(const Matrix& matrixA, const Matrix& matrixB) {
if (matrixA.getColumn() != matrixB.getRow()) throw MatrixMultiplyError("Invalid dimension. Cannot multiply.");
matrix_t result = mul(matrixA.getMatrix(), matrixB.getMatrix());
return Matrix(result);
}
Matrix Matrix::plusWith(const Matrix& matrix) {
if (this->m_column != matrix.getColumn() || this->m_row != matrix.getRow())
throw MatrixPlusMinusError("Invalid dimension. Cannot plus.");
matrix_t result = add(this->m_matrix, matrix.getMatrix());
return Matrix(result);
}
Matrix Matrix::plus(const Matrix& matrixA, const Matrix& matrixB) {
if (matrixA.getColumn() != matrixB.getColumn() || matrixA.getRow() != matrixB.getRow())
throw MatrixPlusMinusError("Invalid dimension. Cannot plus.");
matrix_t result = add(matrixA.getMatrix(), matrixB.getMatrix());
return Matrix(result);
}
Matrix Matrix::subtractWith(const Matrix& matrix) {
if (this->m_column != matrix.getColumn() || this->m_row != matrix.getRow())
throw MatrixPlusMinusError("Invalid dimension. Cannot subtract.");
matrix_t result = minus(this->m_matrix, matrix.getMatrix());
return Matrix(result);
}
Matrix Matrix::subtract(const Matrix& matrixA, const Matrix& matrixB) {
if (matrixA.getColumn() != matrixB.getColumn() || matrixA.getRow() != matrixB.getRow())
throw MatrixPlusMinusError("Invalid dimension. Cannot subtract.");
matrix_t result = minus(matrixA.getMatrix(), matrixB.getMatrix());
return Matrix(result);
}
std::string Matrix::toString() const {
if (m_row == 0 || m_column == 0) return "empty matrix";
int maxLen = MatrixHelper::findMaxLen(m_matrix);
std::string result = "";
std::string before = "|", end_row = "|";
if (m_row == 1 && m_column == 1) {
before = "[";
end_row = "]";
}
for (auto& row : m_matrix) {
for (auto& element : row) {
std::string adjustedElement = before + fillSpaceLeft(
truncateZero(std::to_string(element)), maxLen
);
result.append(adjustedElement);
}
result.append(end_row + "\n");
}
return result;
}