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

조회 수: 1 (최근 30일)
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

채택된 답변

Star Strider
Star Strider 2019년 11월 16일
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
Star Strider
Star Strider 2019년 11월 17일
My pleasure.
It would be appropriate to accept my Answer.

댓글을 달려면 로그인하십시오.

추가 답변 (2개)

JESUS DAVID ARIZA ROYETH
JESUS DAVID ARIZA ROYETH 2019년 11월 16일
data is your 72720 rows in one coloumn
mean720=mean(reshape(data,720,[]));
figure;
plot(mean720)
  댓글 수: 1
Anas Rao
Anas Rao 2019년 11월 17일
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.

댓글을 달려면 로그인하십시오.


Anas Rao
Anas Rao 2019년 11월 18일
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
Anas Rao
Anas Rao 2019년 11월 18일
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

댓글을 달려면 로그인하십시오.

카테고리

Help CenterFile Exchange에서 Interactive Control and Callbacks에 대해 자세히 알아보기

태그

Community Treasure Hunt

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

Start Hunting!

Translated by