使用 scipy/numpy 在 python 中添加 2 矩阵和乘以 2 矩阵

发布于 2024-11-09 06:10:02 字数 171 浏览 3 评论 0原文

我正在尝试使用 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

辞旧 2024-11-16 06:10:02

矩阵乘法:

a = numpy.matrix(a)
b = numpy.matrix(b)
c = a+b
d = a*b

数组乘法(map运算符.mul):

a = numpy.array(a)
b = numpy.array(b)
c = a+b
d = a*b

Matrix multiplication:

a = numpy.matrix(a)
b = numpy.matrix(b)
c = a+b
d = a*b

Array multiplication (map operator.mul):

a = numpy.array(a)
b = numpy.array(b)
c = a+b
d = a*b
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文