How do I split an array into small array of fixed size with increments by 1?

3 次查看(过去 30 天)
For example, I have an array, say
aa = [2 5 6 10 2 4 2 1 -1 -12 0 3 7];
What I want to do is create arrays of length 4, such as
[2 5 6 10], [5 6 10 2], [6 10 2 4], [10 2 4 2], [2 4 2 1], [4 2 1 -1], ....
and group them into a matrix. I understand this can be done in a for loop, but is there a way to vectorize this process?

采纳的回答

Bruno Luong
Bruno Luong 2022-10-28
A=randi(10,1,10)
A = 1×10
3 10 1 4 8 8 9 3 10 6
k=4;
B = hankel(A(1:end-k+1),A(end-k+1:end))
B = 7×4
3 10 1 4 10 1 4 8 1 4 8 8 4 8 8 9 8 8 9 3 8 9 3 10 9 3 10 6
  3 个评论
Alekhya Hati
Alekhya Hati 2022-10-28
编辑:Alekhya Hati 2022-10-28
I found another method as well later on that worked for me
aa = [2 5 6 10 2 4 2 1 -1 -12 0 3 7];
bb = buffer(aa, 4, 3, 'nodelay')
bb = 4×10
2 5 6 10 2 4 2 1 -1 -12 5 6 10 2 4 2 1 -1 -12 0 6 10 2 4 2 1 -1 -12 0 3 10 2 4 2 1 -1 -12 0 3 7
Bruno Luong
Bruno Luong 2022-10-28
I never use this command buffer, so I learn something.
It requires the signal processing toolbox though.

请先登录,再进行评论。

更多回答(1 个)

DGM
DGM 2022-10-28
编辑:DGM 2022-10-28
I'm sure there are other ways, but here's one way.
% the input
A = [2 5 6 10 2 4 2 1 -1 -12 0 3 7];
% the parameter
blocklen = 4;
% generate a 2D array of indices
nrows = numel(A)-blocklen+1;
idx = (1:blocklen) + (0:nrows-1).';
% build the output by direct addressing
B = A(idx)
B = 10×4
2 5 6 10 5 6 10 2 6 10 2 4 10 2 4 2 2 4 2 1 4 2 1 -1 2 1 -1 -12 1 -1 -12 0 -1 -12 0 3 -12 0 3 7

类别

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

Community Treasure Hunt

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

Start Hunting!

Translated by