英文:
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)
通过集体智慧和协作来改善编程学习和解决问题的方式。致力于成为全球开发者共同参与的知识库,让每个人都能够通过互相帮助和分享经验来进步。
评论