I'm trying to multiple two matrices, A and B, where B has more columns than A using python and numpy preferably.
Example:
A = numpy.matrix([[2,3,15],[5,8,12],[1,13,4]], dtype=numpy.object)
B = numpy.matrix([[2,15,6,15,8,14],[17,19,17,7,18,14],[24,14,0,24,2,11]], dtype=numpy.object)
( A*B ) = [[415,297,63,411,100,235],[434,395,166,419,208,314], [319,318,227,202,250,240]]
I've found some examples if they are arrays but none if they are matrices. Can someone help me out?