Average of matrix element

4 次查看(过去 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?

采纳的回答

Walter Roberson
Walter Roberson 2019-8-8
x = [a;b;c;d];
cumsum(x) ./ (1:numel(x))

更多回答(3 个)

Adam
Adam 2019-8-8
cumsum( [a; b; c; d] ) ./ ( 1:4 )';

madhan ravi
madhan ravi 2019-8-8
cumsum(matrix)./(1:numel(matrix)) % where matrix is a column vector

Jos (10584)
Jos (10584) 2019-8-8
One easy option
A = [10 20 30 40]
B = cumsum(A) ./ (1:numel(A))

类别

Help CenterFile Exchange 中查找有关 Multidimensional Arrays 的更多信息

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by