Scilab 6.0.1
- Scilab Help
- Matlab to Scilab Conversion Tips
- Matlab-Scilab equivalents
- C
- case (Matlab function)
- cat (Matlab function)
- cd (Matlab function)
- ceil (Matlab function)
- cell (Matlab function)
- cell2mat (Matlab function)
- cellstr (Matlab function)
- chol (Matlab function)
- cla (Matlab function)
- clc (Matlab function)
- clear (Matlab function)
- clf (Matlab function)
- clock (Matlab function)
- close (Matlab function)
- closereq (Matlab function)
- colordef (Matlab function)
- complex (Matlab function)
- conj (Matlab function)
- continue (Matlab function)
- conv (Matlab function)
- conv2 (Matlab function)
- cos (Matlab function)
- cosh (Matlab function)
- cot (Matlab function)
- coth (Matlab function)
- cputime (Matlab function)
- csc (Matlab function)
- csch (Matlab function)
- cumprod (Matlab function)
- cumsum (Matlab function)
Please note that the recommended version of Scilab is 2025.0.0. This page might be outdated.
See the recommended documentation of this function
cumsum (Matlab function)
Cumulative sum
Particular cases
- C=cumsum(A)
If A is a matrix, cumsum(A) is equivalent to cumsum(A,1) in Matlab whereas in Scilab cumsum(A) gives the cumulative sum of all the entries of A taken columnwise. Actually, Matlab works on the first non-singleton dimension and Scilab does not.
- C = cumsum(A,dim)
Matlab can work with dim greater than number of dimensions of A but Scilab can not, in this can use mtlb_cumsum instead.
Examples
Matlab | Scilab |
Report an issue | ||
<< cumprod (Matlab function) | C | D >> |