how to do matrix multiplication of two matrices in python using numpy

Spread the love

Hello friends in this section we are going to see how to do matrix multiplication of two matrices in python using numpy so let’s see :

how to do matrix multiplication of two matrices in python using numpy
how to do matrix multiplication of two matrices in python using numpy
import numpy as np
a = int(input('enter number of rows'))
b = int(input('enter number of columns'))
enter number of rows2
enter number of columns2
numberlist = list(map(int, input().split()))
1 2 3 4
matrix1 = np.array(numberlist).reshape(a,b)
matrix1
array([[1, 2],
       [3, 4]])
c = int(input('enter number of rows'))
d = int(input('enter number of columns'))
enter number of rows2
enter number of columns2
numberlist2 = list(map(int, input().split()))
5 6 7 8
matrix2 = np.array(numberlist2).reshape(a,b)
matrix2
array([[5, 6],
       [7, 8]])
res = np.dot(matrix1, matrix2)
res
array([[19, 22],
       [43, 50]])
res1 = matrix1@matrix2
res1
array([[19, 22],
       [43, 50]])

Name of Intern who share this Task :

Navin Franklin

github link :navinfranklin (navin franklin) (github.com)

sachin Pagar

Mr. Sachin Pagar is an experienced Embedded Software Engineer and the visionary founder of pythonslearning.com. With a deep passion for education and technology, he combines technical expertise with a flair for clear, impactful writing.

Leave a Reply