Effacer les filtres
Effacer les filtres

Split array into cell arrays of different size

8 vues (au cours des 30 derniers jours)
lightroman
lightroman le 1 Nov 2017
Modifié(e) : Cedric le 2 Nov 2017
I have an array that I am trying to divide into different lengths arrays. The array is 750000 values or so long so I needed an efficient way. I want to start the next array when pattern finishes or begins to start over.
An example would be
A = [5 19 43 28 5 19 43 5 19 43 28 5 19 5 19 43]
I want the result to be something like
Result = {5 19 43 28} {5 19 43} {5 19 43 28} {5 19} {5 19 43}
However, it can also be a longer pattern, [5 19] is how I know the pattern restarts because these values only occur at the beginning of each data set.

Réponses (1)

Cedric
Cedric le 1 Nov 2017
>> seqs = mat2cell( A, 1, diff( [strfind(A, [5,19]), numel(A)+1] ))
seqs =
1×5 cell array
{1×4 double} {1×3 double} {1×4 double} {1×2 double} {1×3 double}
  2 commentaires
lightroman
lightroman le 1 Nov 2017
I get an error saying PATTERN must be a string or cell array of strings, evaluating arg list element 1 .... element 3.
Any idea why? Using same code as I have posted with your solution.
Cedric
Cedric le 2 Nov 2017
Modifié(e) : Cedric le 2 Nov 2017
Which version of MATLAB are you using? STRFIND has been working with numeric array for a long time.
seqs = mat2cell( A, 1, diff( [find(A(1:end-1)==5 & A(2:end)==19), numel(A)+1] ))
and if you need to be more flexible about the size of start patterns, we can generalize the call to FIND, but for this I'll need to know your version of MATLAB.

Connectez-vous pour commenter.

Catégories

En savoir plus sur Characters and Strings dans Help Center et File Exchange

Community Treasure Hunt

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

Start Hunting!

Translated by