Average of matrix element
1 visualización (últimos 30 días)
Mostrar comentarios más antiguos
Supriya Gain
el 8 de Ag. de 2019
Comentada: Jos (10584)
el 8 de Ag. de 2019
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 comentario
Respuesta aceptada
Más respuestas (3)
madhan ravi
el 8 de Ag. de 2019
cumsum(matrix)./(1:numel(matrix)) % where matrix is a column vector
0 comentarios
Jos (10584)
el 8 de Ag. de 2019
One easy option
A = [10 20 30 40]
B = cumsum(A) ./ (1:numel(A))
0 comentarios
Ver también
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!