Average of matrix element
1 回表示 (過去 30 日間)
古いコメントを表示
Suppose i have a 4X1 matrix like [a;b;c;d]. Now i want the output as [a;(a+b)/2;(a+b+c)/3;(a+b+c+d)/4].
How to do that?
1 件のコメント
採用された回答
その他の回答 (3 件)
madhan ravi
2019 年 8 月 8 日
cumsum(matrix)./(1:numel(matrix)) % where matrix is a column vector
0 件のコメント
参考
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!