-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathoperationsFile.cpp
More file actions
87 lines (85 loc) · 2.74 KB
/
operationsFile.cpp
File metadata and controls
87 lines (85 loc) · 2.74 KB
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
#include <vector>
#include <iostream>
#include "operationsFile.hpp"
using namespace std;
matrix matrixOperations::add(matrix A, matrix B){
vector< vector<int> > matA = A.returnElement();
vector< vector<int> > matB = B.returnElement();
vector< vector<int> > addMatrix;
if(A.returnRow()==B.returnRow()&&A.returnColumn()==B.returnColumn()){
for(int i=0; i<A.returnRow(); i++){
vector<int> temp;
for(int j=0; j<A.returnColumn(); j++){
int addn;
addn = matA[i][j]+matB[i][j];
//cout << addn << " ";
temp.push_back(addn);
}
//cout << "\n";
addMatrix.push_back(temp);
}
}else{
throw -1;
}
matrix newMatrix(addMatrix, A.returnRow(), A.returnColumn());
return newMatrix;
}
matrix matrixOperations::subtract(matrix A, matrix B){
vector< vector<int> > matA = A.returnElement();
vector< vector<int> > matB = B.returnElement();
vector< vector<int> > subMatrix;
if(A.returnRow()==B.returnRow()&&A.returnColumn()==B.returnColumn()){
for(int i=0; i<A.returnRow(); i++){
vector<int> temp;
for(int j=0; j<A.returnColumn(); j++){
int subn;
subn = matA[i][j]-matB[i][j];
temp.push_back(subn);
}
subMatrix.push_back(temp);
}
}else{
throw -1;
}
matrix newMatrix(subMatrix, A.returnRow(), A.returnColumn());
return newMatrix;
}
matrix matrixOperations::multiply(matrix A, matrix B){
int p = A.returnColumn();
int q = B.returnRow();
vector< vector<int> > matA = A.returnElement();
vector< vector<int> > matB = B.returnElement();
vector< vector<int> > multMatrix;
if(p==q){
for(int i=0; i<A.returnRow(); i++){
vector<int> temp;
for(int j=0; j<B.returnColumn(); j++){
int mult=0;
for(int x=0; x<p ; x++){
mult += matA[i][x]*matB[x][j];
}
temp.push_back(mult);
}
multMatrix.push_back(temp);
}
}else{
throw -1;
}
matrix newMatrix(multMatrix, A.returnRow(), B.returnColumn());
return newMatrix;
}
matrix matrixOperations::transpose(matrix A){
vector< vector<int> > transpMatrix;
vector< vector<int> > origMatrix = A.returnElement();
for(int j=0; j<A.returnColumn(); j++){
vector<int> temp;
for(int i=0; i<A.returnRow(); i++){
int tempVal;
tempVal = origMatrix[i][j];
temp.push_back(tempVal);
}
transpMatrix.push_back(temp);
}
matrix newMatrix(transpMatrix, A.returnColumn(), A.returnRow());
return newMatrix;
}