How can I split an increment of 80 rows from 1 column and 102400 data into another column counting 1280 columns?

2 次查看(过去 30 天)
I have a series of data - velocites. I have 102400 data points but I need to organise them into 1280 columns of 80 rows each (table). after that i need to mean them and obtain running mean.

采纳的回答

Image Analyst
Image Analyst 2021-11-28
Do you mean this:
velocities = rand(1, 102400);
velocities = reshape(velocities, 1280, []);
columnMeans = mean(velocities, 1);
rowMeans = mean(velocities, 2);
  5 个评论

请先登录,再进行评论。

更多回答(0 个)

类别

Help CenterFile Exchange 中查找有关 Logical 的更多信息

产品


版本

R2021a

Community Treasure Hunt

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

Start Hunting!

Translated by