How to split array in n part every m points ?

20 ビュー (過去 30 日間)
Charles Herman
Charles Herman 2019 年 3 月 15 日
編集済み: Matt J 2019 年 3 月 18 日
Hi everyone,
This question is very frustrating. 3 months ago, I found, 'by chance', a function that I didn't need, and now I need it and I don't remenber the name...
For approximately 4 hours i searched this function, and it seems I don't have 'luck' anymore
On a matrix of 1*n, this function split this matrix into vectors of p values with a step of r .
For example :
A = [ 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 ];
B = function(A,p,r) ; returned B = [ 1 2 3 ; 2 3 4 ; 3 4 5 ; 4 5 6 ; ... ; ... ;17 18 19 ; 18 19 20 ]
assuming p = 3 and r = 1
Does anyone know the name of this function ?
There was no iteration, or loop, it was just a simple function but very powerfull for a specified purpose : - )
Thank you in advance to help me to get my lucky charm back

採用された回答

Matt J
Matt J 2019 年 3 月 15 日
編集済み: Matt J 2019 年 3 月 15 日
I don't know of any built-in function that will do that, but it is easy to implement:
function B=foo(A,p,r)
N=numel(A);
idx=(0:r:N-p).'+(1:p);
B=A(idx);
end
  3 件のコメント
Matt J
Matt J 2019 年 3 月 17 日
編集済み: Matt J 2019 年 3 月 18 日
You're welcome, but please Accept-click the answer if it addresses your question.
Charles Herman
Charles Herman 2019 年 3 月 18 日
Oupsi : )
Now it's done
Have a nice day

サインインしてコメントする。

その他の回答 (0 件)

カテゴリ

Help Center および File ExchangeLogical についてさらに検索

製品


リリース

R2018a

Community Treasure Hunt

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

Start Hunting!

Translated by