Random pick data by label

1 回表示 (過去 30 日間)
Hg
Hg 2015 年 8 月 7 日
編集済み: Azzi Abdelmalek 2015 年 8 月 7 日
I have a data array (13x5). The last column is the class (1-4) of each data. How do I randomly pick n-number of data from each class? Let say 2 data from each class.

採用された回答

Azzi Abdelmalek
Azzi Abdelmalek 2015 年 8 月 7 日
編集済み: Azzi Abdelmalek 2015 年 8 月 7 日
A=[randi(9,100,4) randi([1 4],100,1)] % Example
[ii,jj,kk]=unique(A(:,5))
m=accumarray(kk,(1:numel(kk))',[],@(x) {x'})
out=cell2mat(cellfun(@(x) A(x(randperm(numel(x),2)),:),m,'un',0))

その他の回答 (0 件)

カテゴリ

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

タグ

製品

Community Treasure Hunt

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

Start Hunting!

Translated by