I have data in a matrix where I need each consecutive row to be the average of all the rows above this. How would I go about this?

 Akzeptierte Antwort

James Tursa
James Tursa am 21 Feb. 2018
Bearbeitet: James Tursa am 21 Feb. 2018

0 Stimmen

Assuming the average includes the row in question:
x = your matrix
result = cumsum(x)./(1:size(x,1))';
Or for earlier versions of MATLAB:
result = bsxfun(@rdivide,cumsum(x),(1:size(x,1))');

Weitere Antworten (0)

Gefragt:

am 21 Feb. 2018

Kommentiert:

am 22 Feb. 2018

Community Treasure Hunt

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

Start Hunting!

Translated by