In [14]:
import numpy as np
x = np.matrix( "2 4 5; 3 4 5") # Can use either format
y = np.matrix( ((5,10), (10,20), (20,50)) )
In [15]:
x
Out[15]:
In [16]:
y
Out[16]:
In [17]:
x * y
Out[17]:
Some new notation
In [ ]: