-
Notifications
You must be signed in to change notification settings - Fork 354
/
Copy pathmatrices.java
340 lines (260 loc) · 8.05 KB
/
matrices.java
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
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
/* Title : Operations on matrices .
Description : User need to enter the elements of the matrix A and B .
Operations will be done on the matrices : 1.To add 2.To Subtract
3.To multiply . User need to choose it.
The maximum limit of total number of rows and columns : 8
You can't generate the matrices having more than 8 number of rows and columns .
Here , if the both matrices are of square matrix only then the multiplication can be
done . i.e Rows(A)==Columns(B) equal fOR BA multiplication
and Rows(B)==Columns(A) equal fOR BA multiplication . multiplication rule.
This is done here to maintain the formate of the code and to maintain the
multiplication of matices .
Addition and subtraction are done as the Matrix A and B both are having same number of rows and columns .
*/
import java.util.Scanner;
public class matrices
{
public final static int MAXLIMIT=8;
public static void main(String[] args)
{
Scanner input=new Scanner (System.in);
int opt ;
do // Enter the data needed .
{
System.out.println(" Enter the number of rows and columns (Maximum limit is 8 ) : \n");
int row=input.nextInt();
int col=input.nextInt();
double a[][]=new double[row][col];
double b[][]=new double[row][col];
if((row>MAXLIMIT)||(col>MAXLIMIT)||(row<1)||(col<1))
{ System.out.println("\n Invalid Enteries !! \n Please try again later .");
System.exit(0);
}
else
{ System.out.println("\n ENTER THE ELEMENTS OF MATRIX A "); // Enter Matrix A
for(int i=0;i<row;i++)
{
for(int j=0;j<col;j++)
{ a[i][j]=input.nextDouble();
} }
System.out.println("\n ENTER THE ELEMENTS OF MATRIX B"); // Enter Matrix B
for(int i=0;i<row;i++)
{
for(int j=0;j<col;j++)
{ b[i][j]=input.nextDouble(); } }
}
System.out.println();
System.out.println(" ELEMENTS OF MATRIX A"); // Matrix A
for(int i=0;i<row;i++)
{
for(int j=0;j<col;j++)
{ System.out.print( a[i][j]+ "\t"); }
System.out.println("\n");
}
System.out.println();
System.out.println(" ELEMENTS OF MATRIX B"); // Matrix B
for(int i=0;i<row;i++)
{
for(int j=0;j<col;j++)
{ System.out.print( b[i][j]+ "\t"); }
System.out.println("\n");
}
int i, j ;
System.out.println("\n1.Add \n2.Subtraction \n3.Multiplication ");
opt=input.nextInt();
System.out.println();
switch(opt)
{
case 1 : double add[][]=new double [row][col]; // Addition of matrices A and B .
System.out.println("Addition of matrix A and B : ");
for(i=0;i<row;i++)
{
for(j=0;j<col;j++)
{ add[i][j]=a[i][j] + b[i][j];
System.out.print(add[i][j] +"\t"); }
System.out.println(); }
System.out.println();
break ;
case 2 : double sub1[][]=new double [row][col]; // Subtraction of matrix A from B .
System.out.println("Subtraction of matrix A from B : ");
for(i=0;i<row;i++)
{
for(j=0;j<col;j++)
{ sub1[i][j]= -a[i][j] + b[i][j];
System.out.print(sub1[i][j] +"\t"); }
System.out.println(); }
System.out.println();
double sub2[][]=new double [row][col]; // Subtraction of matrix B from A .
System.out.println("Subtraction of matrix B from A : ");
for(i=0;i<row;i++)
{
for(j=0;j<col;j++)
{ sub2[i][j]= a[i][j] - b[i][j];
System.out.print(sub2[i][j] +"\t"); }
System.out.println(); }
System.out.println();
break ;
case 3 :
System.out.println("Matrix multiplication is not commutative always.\n i.e A*B is not equals to B*A. \n");
if(row==col)
{
// Multiply matrix A and B . i.e : AB
int k;
double sum=0 ;
double mul1[][]=new double [row][col];
System.out.println(" Multiplication of matrices A and B : AB ");
for(i=0;i<row;i++)
{
for(j=0;j<col;j++)
{
for(k=0;k<col;k++)
{ mul1[i][j]=mul1[i][j] + a[i][k]*b[k][j]; }
}
System.out.println(); }
for(i=0;i<col;i++)
{
for(j=0;j<col;j++)
{ System.out.print(mul1[i][j] +"\t"); }
System.out.println();
}
System.out.println();
// Multiply matrix B and A . i.e : BA
double mul2[][]=new double [row][col];
System.out.println(" Multiplication of matrices A and B : BA ");
for(i=0;i<row;i++)
{
for(j=0;j<col;j++)
{
for(k=0;k<col;k++)
{ mul2[i][j]=mul2[i][j] + b[i][k]*a[k][j]; }
}
System.out.println(); }
for(i=0;i<col;i++)
{
for(j=0;j<col;j++)
{ System.out.print(mul2[i][j] +"\t"); }
System.out.println();
}
}
else
{
System.out.println(" Multiplication is not valid . \n");
}
System.out.println();
break ;
}
System.out.println(" Do you wish to continue ? \n1.Yes 2.No\n" );
opt=input.nextInt();
}while(opt!=2);
}}
/*
Enter the number of rows and columns (Maximum limit is 8 ) :
2
2
ENTER THE ELEMENTS OF MATRIX A
1
2
3
4
ENTER THE ELEMENTS OF MATRIX B
2
2
2
2
ELEMENTS OF MATRIX A
1.0 2.0
3.0 4.0
ELEMENTS OF MATRIX B
2.0 2.0
2.0 2.0
1.Add
2.Subtraction
3.Multiplication
1
Addition of matrix A and B :
3.0 4.0
5.0 6.0
Do you wish to continue ?
1.Yes 2.No
1
Enter the number of rows and columns (Maximum limit is 8 ) :
3
3
ENTER THE ELEMENTS OF MATRIX A
12
13
14
15
16
17
18
19
20
ENTER THE ELEMENTS OF MATRIX B
2
2
2
2
2
2
2
2
2
ELEMENTS OF MATRIX A
12.0 13.0 14.0
15.0 16.0 17.0
18.0 19.0 20.0
ELEMENTS OF MATRIX B
2.0 2.0 2.0
2.0 2.0 2.0
2.0 2.0 2.0
1.Add
2.Subtraction
3.Multiplication
2
Subtraction of matrix A from B :
-10.0 -11.0 -12.0
-13.0 -14.0 -15.0
-16.0 -17.0 -18.0
Subtraction of matrix B from A :
10.0 11.0 12.0
13.0 14.0 15.0
16.0 17.0 18.0
Do you wish to continue ?
1.Yes 2.No
1
Enter the number of rows and columns (Maximum limit is 8 ) :
2
2
ENTER THE ELEMENTS OF MATRIX A
1
2
44
45
ENTER THE ELEMENTS OF MATRIX B
2
2
3
33
ELEMENTS OF MATRIX A
1.0 2.0
44.0 45.0
ELEMENTS OF MATRIX B
2.0 2.0
3.0 33.0
1.Add
2.Subtraction
3.Multiplication
3
Matrix multiplication is not commutative always.
i.e A*B is not equals to B*A .
Multiplication of matrices A and B : AB
8.0 68.0
223.0 1573.0
Multiplication of matrices A and B : BA
90.0 94.0
1455.0 1491.0
Do you wish to continue ?
1.Yes 2.No
2
*/