how to average data /6 rows ?

hi, im new user matlab,
how to average data /6 rows ?
0.2
0.1
0.3
0.6
0.7
0.1
0
0
0
0
0.6
0.5
.
.
.
length rows = 5430
thanks you ..

3 comentarios

madhan ravi
madhan ravi el 20 de Abr. de 2019
Editada: madhan ravi el 20 de Abr. de 2019
Good job editing the question and deleting the comment. Will make sure I don’t answer your question anymore.
surya
surya el 21 de Abr. de 2019
I'm sorry, I made a mistake yesterday with my data, so I edited it and there was no internet network and I pressed submit when I wasn't finished editing. sorry I won't repeat it again
Rena Berman
Rena Berman el 13 de Mayo de 2019
(Answers Dev) Restored edit

Respuestas (1)

madhan ravi
madhan ravi el 16 de Abr. de 2019

0 votos

mean(reshape(data,6,[]))

3 comentarios

surya
surya el 16 de Abr. de 2019
im try script program
col = Namafiles(1:12));
mymeans = 1/6*(col(1:6:end-1) + col(6:6:end))
also cant ..
what Is the data type different??
madhan ravi
madhan ravi el 16 de Abr. de 2019
idx=cellfun(@isnumeric,C); % C is your data
C(~idx)=cellfun(@str2double,C(~idx),'un',0);
D = vertcat(C{:});
mean(reshape(D,6,[]))
surya
surya el 21 de Abr. de 2019
oke thank you , I apologize that I just responded because there is an internet connection now

La pregunta está cerrada.

Etiquetas

Preguntada:

el 16 de Abr. de 2019

Cerrada:

el 20 de Ag. de 2021

Community Treasure Hunt

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

Start Hunting!

Translated by