How to divide an array

2 次查看(过去 30 天)
I have an array of 19361 samples. i want to divide it such that each array has 365 samples. 19361 is not perfactly divisible by 365. How can I do that?
  2 个评论
James Tursa
James Tursa 2019-11-21
Depends. What do you want to do for the leftovers? How will this be used downstream in your code?
Jaydeep Kansara
Jaydeep Kansara 2019-11-21
Thanks for the reply. I want to keep the leftovers and store them. there are 53 full array and leftocvers should be stored in 54th array.

请先登录,再进行评论。

采纳的回答

Adam Danz
Adam Danz 2019-11-21
编辑:Adam Danz 2019-11-21
Here's how to partition your row or column vector of data into a matrix with 365 rows and m columns. The last column may contain trailing NaN values as fillers.
% Create data
data = rand(1,19361);
n = 365; %number of elements per group
% add NaNs to the end of your data to
% create enough samples to split evenly
% into n-sample groups.
extraNeeded = n - mod(numel(data),n);
% Concatenate vertically
% if data is a row vector it will be changed to a column vector
data = [data(:); nan(extraNeeded,1)];
% partition your data
dataSections = reshape(data,n,[]);
Result
size(dataSections)
ans =
365 54
Group j can be accessed by
dataSections(:,j)

更多回答(0 个)

类别

Help CenterFile Exchange 中查找有关 Operators and Elementary Operations 的更多信息

Community Treasure Hunt

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

Start Hunting!

Translated by