Yesterday I needed a cumulative sum function in Maxima to do the job of cumsum() in R and MATLAB, but couldn’t find anything. So here’s a one-liner that does the trick for a list:
cumsum(L):=makelist(sum(L[i],i,1,n),n,1,length(L))$
Yesterday I needed a cumulative sum function in Maxima to do the job of cumsum() in R and MATLAB, but couldn’t find anything. So here’s a one-liner that does the trick for a list:
cumsum(L):=makelist(sum(L[i],i,1,n),n,1,length(L))$