0% found this document useful (0 votes)
8 views11 pages

FDS Assignment 03

Assignment 3

Uploaded by

k9172056115
Copyright
© © All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as DOCX, PDF, TXT or read online on Scribd
0% found this document useful (0 votes)
8 views11 pages

FDS Assignment 03

Assignment 3

Uploaded by

k9172056115
Copyright
© © All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as DOCX, PDF, TXT or read online on Scribd
You are on page 1/ 11

Assignment No 3

Name :- Kishor Tanaji Pawar


Div :- C3
Roll No :- 63

CODE :-

def accept_matrix(M):
print("\nEnter the order of the Matrix (row,col):")
r= int(input("\trow = ")) c= int(input("\tcol =")) print("Enter
the elements of the Matrix : \n")
for i in range(r): A=[] for j in range(c):
A.append(int(input()))
M.append(A) print("\nMatrix accepted
successfully\n")

def display_matrix(M,r,c):
print("Matrix (%d,%d): "%(r,c))
for i in range(r): print("\t\
t",end='')
for j in range(c):
print("%3d"%M[i][j],end='')
print(" ")

def addition_matrix(M1,M2,M3,r,c):
for i in range (r): A=[] for j in range
(c):
A.append(M1[i][j]+M2[i][j])
M3.append(A)
def substraction_matrix(M1,M2,M3,r,c):
for i in range (r): A=[] for j in range (c):
A.append(M1[i][j]-M2[i][j])
M3.append(A)

def multiplication_matrix(M1,M2,M3,r1,c1,c2):
for i in range(r1): A=[] for j in range(c2):
sum=0 for k in range(c1):
sum=sum+(M1[i][k]*M2[k][j])
A.append(sum)
M3.append(A)

def find_transpose_matrix(M,r,c,T):
for i in range(c): A=[] for j in
range(r):
A.append(M[j][i])
T.append(A)

def main():
while True:
print("\t\t\t1: Accept Matrix");
print("\t\t\t2: Display Matrix"); print("\t\t\t3:
Addition of Matrices"); print("\t\t\t4:
SUbstraction of Matrices"); print("\t\t\t5:
Multiplication of Matrices"); print("\t\t\t6:
Transpose Matrix"); print("\t\t\t7: Exit");

ch=int(input("Enter your choice:"))


M3=[] if(ch==7): print("End
of Program") break
elif(ch==1):
M1=[]
M2=[]
print("Input First Matrix") accept_matrix(M1)
r1=len(M1) c1=len(M1[0]) print("Input Second
Matrix") accept_matrix(M2) r2=len(M2) c2=len(M2[0])
elif(ch==2): print("\tFirst",end=' ')
display_matrix(M1,r1,c1) print("\
tSecond",end=' ') display_matrix(M2,r2,c2)
elif(ch==3): print("\tFirst",end='')
display_matrix(M1,r1,c1)
print("\tSecond",end='')
display_matrix(M2,r2,c2) if(r1==r2 and
c1==c2): addition_matrix(M1,M2,M3,r1,c1)
print("\tAddition") display_matrix(M3,r1,c1)
else:
print("Addition not possible (order not same)")
elif(ch==4):
print("\tFirst", end='')
display_matrix(M1,r1,c1)
print("\tSecond",end='')
display_matrix(M2,r2,c2) if(r1==r2 and
c1==c2):
substraction_matrix(M1,M2,M3,r1,c1) print("\
tSubstraction") display_matrix(M3,r1,c1)
else:
print("substraction not possible(order not same)")
elif(ch==5):
print("\tFirst",end='')
display_matrix(M1,r1,c1) print("\tSecond",end='')
display_matrix(M2,r2,c2) if(c1==r2):
multiplication_matrix(M1,M2,M3,r1,c1,c2) print("\
tMultiplication") display_matrix(M3,r1,c2) else:
print("Multiplication not possible")
elif(ch==6):
print("\tFirst",end='')
display_matrix(M1,r1,c1)
find_transpose_matrix(M1,r1,c1,M3); print("\
tTranspose",end=''); display_matrix(M3,c1,r1)
print("\tSecond",end='')
display_matrix(M2,r2,c2) M3=[]
find_transpose_matrix(M2,r2,c2,M3);
print("\tTranspose",end='');
display_matrix(M3,c2,r2)

else:
print("Wrong choice entered !! Try again")

main()

Output –

1: Accept Matrix
2: Display Matrix

3: Addition of Matrices

4: SUbstraction of Matrices
5: Multiplication of
Matrices
6: Transpose Matrix
7: Exit
Enter your choice:1
Input First Matrix

Enter the order of the Matrix (row,col):


row = 3
col =2
Enter the elements of the Matrix :

1
2
3
4
5
6
Matrix accepted successfully

Input Second Matrix

Enter the order of the Matrix (row,col):


row = 3
col =2
Enter the elements of the Matrix :
7
8
9
4
5
2
Matrix accepted successfully

1: Accept Matrix
2: Display Matrix
3: Addition of Matrices
4: SUbstraction of Matrices
5: Multiplication of Matrices
6: Transpose Matrix
7:
Exit Enter your
choice:2 First Matrix
(3,2):
12
34
56
Second Matrix (3,2):
78
94
52
1: Accept Matrix
2: Display Matrix
3: Addition of Matrices
4: SUbstraction of Matrices
5: Multiplication of Matrices
6: Transpose Matrix
7: Exit
Enter your choice:3
FirstMatrix (3,2):
12
34
56
SecondMatrix (3,2):
78
94
52
Addition
Matrix (3,2):
8 10
12 8
10 8
1: Accept Matrix
2: Display Matrix
3: Addition of Matrices
4: SUbstraction of Matrices
5: Multiplication of Matrices
6: Transpose Matrix
7: Exit
Enter your choice:4
FirstMatrix (3,2):
12
34
56
SecondMatrix (3,2):
78
9 4
52
Substraction
Matrix (3,2):
-6 -6
-6 0
04
1: Accept Matrix
2: Display Matrix
3: Addition of Matrices
4: SUbstraction of Matrices
5: Multiplication of Matrices
6: Transpose Matrix
7: Exit Enter your choice:5
FirstMatrix (3,2):
12
34
5 6 SecondMatrix
(3,2):
78
94
52
Multiplication not possible
1: Accept Matrix
2: Display Matrix
3: Addition of Matrices
4: SUbstraction of Matrices
5: Multiplication of Matrices
6: Transpose Matrix
7: Exit
Enter your choice:6
FirstMatrix (3,2):
12
34
5 6
TransposeMatrix (2,3): 135
246
SecondMatrix (3,2):
78
94
5 2
TransposeMatrix (2,3): 795
842
1: Accept Matrix
2: Display Matrix
3: Addition of Matrices
4: SUbstraction of Matrices
5: Multiplication of Matrices
6: Transpose Matrix
7: Exit
Enter your choice:7
End of Program

You might also like