-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathMatrix Addition & Multiplication.cpp
130 lines (112 loc) · 3.32 KB
/
Matrix Addition & Multiplication.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
#include <iostream>
using namespace std;
class Matrix {
private:
int row, col, *A;
public:
Matrix(int r, int c) {
row = r;
col = c;
int *p = new int[row * col]; //A[y*rows + x]
A = p;
}
void getMatrix() {
cout << endl << "Enter Matrix: " << endl;
for (int i = 0; i < row; i++) {
for (int j = 0; j < col; j++) {
cout << "Row : " << i + 1 << ", Element : " << j + 1 << " = ";
cin >> A[j * row + i];
}
}
}
void displayMatrix(int n) {
cout << "\nMatrix M" << n << ":\n";
for (int i = 0; i < row; i++) {
for (int j = 0; j < col; j++) {
cout << "\t" << A[j * row + i];
}
cout << endl;
}
}
Matrix addMatrix(const Matrix &M2) {
Matrix M3(row, col);
int* M = M3.A;
int* b = M2.A;
for (int i = 0; i < row; i++) {
for (int j= 0; j < col; j++) {
M[j * row + i] = A[j * row + i] + b[j * row + i];
}
}
return M3;
}
Matrix Product(const Matrix &M2) {
if (row == M2.col) {
Matrix M3(col, M2.row);
int* M = M3.A;
int* b = M2.A;
for (int i = 0; i < row; i++) {
for (int j = 0; j < col; j++) {
M[j * row + i] = (A[j * row + i] * b[j * row + i]) + (A[(j + 1) * row + i] * b[j * row + (i + 1)]);
}
}
return M3;
}
else {
cout << "Matrix Multiplication Is Not Possible!" << endl;
}
}
};
int* getOrder(int n = 0) {
int *order = new int[2];
cout << "Matrix Order For Matrix" << n << "\n\n";
cout << "No. of Rows = ";
cin >> order[0];
cout << "No. of Columns = ";
cin >> order[1];
return order;
}
int main() {
int row, col, *R;
int option;
cout << "Enter you choice:\n";
cout << "1. Matrix Addition\n";
cout << "2. Matrix Multiplication\n";
cin >> option;
if (option == 1) {
R = getOrder();
row = R[0];
col = R[1];
Matrix a(row, col);
Matrix b(row, col);
Matrix c(row, col);
a.getMatrix();
a.displayMatrix(1);
b.getMatrix();
b.displayMatrix(2);
c = a.addMatrix(b);
cout << endl << "Sum of The above Matrices, M1 + M2 = M3";
c.displayMatrix(3);
}
else if (option == 2) {
cout << endl << "Matrix Multiplication\n\n";
R = getOrder(1);
row = R[0];
col = R[1];
Matrix m(row, col);
m.getMatrix();
m.displayMatrix(1);
R = getOrder(2);
row = R[0];
col = R[1];
Matrix n(row, col);
n.getMatrix();
n.displayMatrix(2);
Matrix p = m.Product(n);
cout << endl << "Product of The above Matrices, M1 * M2 = M3";
p.displayMatrix(3);
}
else {
cout << "\t**Invalid Option** Bye!\n";
}
return 0;
}