在这段代码中,我想找到矩阵的添加。A+B
[[x + y for x,y in zip(w,v)] for w,v in zip(A,B)]
当我运行程序并在 python shell 中编写时,A+B
答案是 [[7, 4], [5, 0], [4, 4], [2, 2], [-3, 3], [- 2, 4]]
答案实际上应该是[[9,6],[2,3],[2,8]]
我需要在程序中集成什么,以便调用的 Python 函数def addition (A,B)
将两个矩阵作为输入并返回两个输入的相加作为结果。