Skip to main content

DSL A9

 Write a Python program to compute following computation on matrix:

a) Addition of two matrices

B) Subtraction of two matrices

c) Multiplication of two matrices

d) Transpose of a matrix

The Code for above problem is as follows:


   
 #@author: SPPU CSE GURU  
   
 m1=int(input("Enter Number of rows for matrix A "))  
 n1=int(input("Enter Number of columns for matrix A "))  
   
 m2=int(input("Enter Number of rows for matrix B "))  
 n2=int(input("Enter Number of columns for matrix B "))  
   
 if(m1==m2 and n1==n2):  
   A=[]  
   for i in range(m1):  
     sublist=[]  
     for j in range(n1):  
       e=int(input("Enter Element for matrix A "))  
       sublist.append(e)  
     A.append(sublist)  
   print("****** Matrix A ******")    
   for i in A:  
     print(i)  
       
   B=[]  
   for i in range(m2):  
     sublist=[]  
     for j in range(n2):  
       e=int(input("Enter Element for matrix B "))  
       sublist.append(e)  
     B.append(sublist)  
   print("****** Marix B ******")   
   for i in B:  
     print(i)      
      
   #Addition  
    
   add=[]  
   for i in range(m1):  
     sublist=[]  
     for j in range(n1):  
       s=A[i][j]+B[i][j]  
       sublist.append(s)  
     add.append(sublist)    
   print("****** Addition of Matrix ******")    
   for i in add:  
     print(i)   
         
   #Subtraction  
       
   sub=[]  
   for i in range(m1):  
     sublist=[]  
     for j in range(n1):  
       s=A[i][j]-B[i][j]  
       sublist.append(s)  
     sub.append(sublist)    
   print("****** Subtraction of Matrix ******")    
   for i in sub:  
     print(i)        
        
   #Transpose    
       
   trans=[]  
   for i in range(m1):  
     sublist=[]  
     for j in range(n1):  
       t=A[j][i]  
       sublist.append(t)  
     trans.append(sublist)    
   print("****** Transpose of Matrix ******")    
   for i in trans:  
     print(i)     
       
   #Multiplication  
   mul=[]  
   for i in range(m1):  
     sublist=[]  
     for j in range(n1):  
       sum=0  
       for k in range(m1):  
         m=(A[i][k])*(B[k][j])  
         sum=sum+m  
       sublist.append(sum)    
     mul.append(sublist)    
   print("****** Multiplication ******")  
   for i in mul:  
     print(i)    
    
 else:  
   print("Error!!!!!!!")   
   print("Enter same order of A and B")   

Comments

Popular posts from this blog

DSL A1

Hello Friends lets See the first practical of Data Structure Laboratory(DSL) of SPPU Second Year. Some of the students are afraid of coding as it is new to all of us. So we are here to conquer your fear. You will find it easy as it explained by students only. So lets Get into it The first practical of part A is : In second year computer engineering class, group A student’s play cricket, group B students play badminton and group C students play football. Write a Python program using functions to compute following: -  a) List of students who play both cricket and badminton  b) List of students who play either cricket or badminton but not both  c) Number of students who play neither cricket nor badminton  d) Number of students who play cricket and football but not badminton.  (Note- While realizing the group, duplicate entries should be avoided, Do not use SET built-in functions)  So most of us know the SET theory in mathematics. The above problem is very easy if you have knowledge about

Bouncing Ball

Group B   Practical 4 a   Problem Statement :   Write a C++ program to implement bouncing ball using sine wave form. Apply the concept of polymorphism. Check Out Code Here  ðŸ‘‡ Outputs :  Code can get updated so also come back later to see if there is any changes. Also if there is any problem with code you can comment below. If you like it, do share with your friends.😊

OOP 6

   Object Oriented Programming Group B - Practical : 6 Problem Statement :  Write C++ program using STL for sorting and searching user defined records such as personal records (Name, DOB, Telephone number etc) using vector container. Check Out Code Here  ðŸ‘‡ Code can get updated so also come back later to see if there is any changes. Also if there is any problem with code you can comment below. If you like it, do share with your friends.😊