📜  矩阵 python 数学 - Python 代码示例

📅  最后修改于: 2022-03-11 14:46:42.849000             🧑  作者: Mango

代码示例1
>>> x = np.array( ((2,3), (3, 5)) )
>>> y = np.matrix( ((1,2), (5, -1)) )
>>> np.dot(x,y)
matrix([[17,  1],
        [28,  1]])