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.

 採用された回答

Akira Agata
Akira Agata 2018 年 5 月 10 日

1 投票

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);

その他の回答 (0 件)

カテゴリ

ヘルプ センター および File ExchangeWorkspace Variables and MAT Files についてさらに検索

タグ

Community Treasure Hunt

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

Start Hunting!

Translated by