使用 scipy/numpy 在 python 中添加 2 矩阵和乘以 2 矩阵
我正在尝试使用 scipy 和 numpy 来执行矩阵加法和乘法。
我有 2 个矩阵“a”和“b”。我的目标是将“a”和“b”相加并将结果存储到矩阵“c”中
另外我想将“a”和“b”相乘并存储到矩阵“d”中。
Scipy/Numpy 中是否有类似的函数?
多谢。
I am trying to use scipy and numpy to perform matrix addition and multiplication.
I have 2 matrix "a" and "b". my goal is to add "a" and "b" together and store the result into a matrix "c"
Also I want to multiply "a" and "b" and store into a matrix "d".
Are there any function perform like that in Scipy/Numpy?
Thanks a lot.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
矩阵乘法:
数组乘法(map运算符.mul):
Matrix multiplication:
Array multiplication (map operator.mul):