You are viewing a single comment's thread. Return to all comments →
DOt product is the multiplication of matrix
from __future__ import print_function import numpy n=int(raw_input()) a = numpy.array([raw_input().split() for _ in range(n)],int) b = numpy.array([raw_input().split() for _ in range(n)],int) m = numpy.dot(a,b) print (m)
Seems like cookies are disabled on this browser, please enable them to open this website
Dot and Cross
You are viewing a single comment's thread. Return to all comments →
DOt product is the multiplication of matrix