Mean of 72720 rows in one column such that I can take mean of 720 rows separately.

1 visualizzazione (ultimi 30 giorni)
Hello!
I have data of 72720 rows in one coloumn. I want to take the mean of each 720 rows and then plot a graph.
Thank you

Risposta accettata

Star Strider
Star Strider il 16 Nov 2019
Try this:
data = (1:72720)'; % Create Column Vector To Test Code
rdata = reshape(data, [], 720); % Reshape To Matrix
rdata_mean = mean(rdata); % Calculate Column Means
figure
plot(1:numel(rdata_mean), rdata_mean)
grid
Experiment to get the result you want.
  4 Commenti

Accedi per commentare.

Più risposte (2)

JESUS DAVID ARIZA ROYETH
JESUS DAVID ARIZA ROYETH il 16 Nov 2019
data is your 72720 rows in one coloumn
mean720=mean(reshape(data,720,[]));
figure;
plot(mean720)
  1 Commento
Anas Rao
Anas Rao il 17 Nov 2019
Thankyou for your answer and if I have to find the maximum value of new re-shape formed such that I have to find out the maximum value in each coloumn. I have tried max (mean720) but it is giving me error. Can you please guide me related to it.

Accedi per commentare.


Anas Rao
Anas Rao il 18 Nov 2019
The code is working but I don't know why in my MATLAB 'max or mean' function is not working. It is giving the following error. Can you please help me related to it. Thank you
Capture.PNG
  5 Commenti
Anas Rao
Anas Rao il 18 Nov 2019
Thankyou Sir. It is now working. Actually I have made a mistake in the begining with exporting the data on the MATLAB. The command is making it into cell form rather then number. Thank you for your help

Accedi per commentare.

Categorie

Scopri di più su Interactive Control and Callbacks in Help Center e File Exchange

Tag

Community Treasure Hunt

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

Start Hunting!

Translated by