Mean of 72720 rows in one column such that I can take mean of 720 rows separately.
1 visualización (últimos 30 días)
Mostrar comentarios más antiguos
Anas Rao
el 16 de Nov. de 2019
Comentada: Star Strider
el 18 de Nov. de 2019
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
0 comentarios
Respuesta aceptada
Star Strider
el 16 de Nov. de 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 comentarios
Más respuestas (2)
JESUS DAVID ARIZA ROYETH
el 16 de Nov. de 2019
data is your 72720 rows in one coloumn
mean720=mean(reshape(data,720,[]));
figure;
plot(mean720)
Ver también
Categorías
Más información sobre Logical en Help Center y File Exchange.
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!