我想做类似的事情
foo = c(1, 1, 1)
bar = magic_function(foo, sum, init=0)
其中bar
是1 2 3
,即 的部分和foo
。是否有这样的功能,或者最好的方法是什么(避免for循环)?
我想做类似的事情
foo = c(1, 1, 1)
bar = magic_function(foo, sum, init=0)
其中bar
是1 2 3
,即 的部分和foo
。是否有这样的功能,或者最好的方法是什么(避免for循环)?