如何计算矩阵每列的累积和?

huangapple go评论68阅读模式
英文:

How to calculate the cumulative sum of each column of a matrix?

问题

以下是要翻译的内容:

这里有一个矩阵 m(111 121 222, 222 234 421):

如何计算矩阵每列的累积和?

我想要得到一个相同大小的新矩阵,其中包含了 m 的每列的累积和。

以下是我期望的结果:

如何计算矩阵每列的累积和?

有人知道如何做到这一点吗?如果知道的话,能分享一些最佳实践吗?提前感谢。

英文:

Here is a matrix m (111 121 222, 222 234 421):

如何计算矩阵每列的累积和?

I want to get a new matrix of the same size containing the cumulative sums for each column of m.

The following is what I expect:

如何计算矩阵每列的累积和?

Does anyone know how to do this? If so, can you share some best practices? Thanks in advance.

答案1

得分: 2

翻译内容:

看起来cumsum适合你:

m = matrix(111 121 222, 222 234 421)
cumsum(m)
英文:

Looks cumsum is for you:

m = matrix(111 121 222, 222 234 421)
cumsum(m)

huangapple
  • 本文由 发表于 2023年6月5日 14:34:34
  • 转载请务必保留本文链接:https://go.coder-hub.com/76404001.html
匿名

发表评论

匿名网友

:?: :razz: :sad: :evil: :!: :smile: :oops: :grin: :eek: :shock: :???: :cool: :lol: :mad: :twisted: :roll: :wink: :idea: :arrow: :neutral: :cry: :mrgreen:

确定