I have a file having a sample size of 491520. I want to save every alternative 102 samples separately. For example - I want 1 to 102 but don't want 103 to 204 and so on.

 Réponse acceptée

Akira Agata
Akira Agata le 10 Mai 2018

1 vote

Like this?
% Sample data (size of 491520)
data = rand(491520,1);
idx = repelem([true;false],102);
idx = repmat(idx,ceil(491520/204),1);
idx = idx(1:size(data,1)); % Since 491520 can't be divided by 204
% Separate every alternative 102 samples
data1 = data(idx);
data2 = data(~idx);

Plus de réponses (0)

Catégories

En savoir plus sur Variables dans Centre d'aide et File Exchange

Tags

Community Treasure Hunt

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

Start Hunting!

Translated by